Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Testicular Slingshot
Alchemy Viewer
Commits
a29913f4
Commit
a29913f4
authored
Feb 19, 2020
by
Rye Mutt
🍞
Browse files
Small cleanup to LLExperienceLog event insertion
parent
a4fb597e
Changes
1
Hide whitespace changes
Inline
Side-by-side
indra/newview/llexperiencelog.cpp
View file @
a29913f4
...
...
@@ -219,10 +219,7 @@ void LLExperienceLog::loadEvents()
if
(
mMaxDays
>
0
&&
settings
.
has
(
"Events"
))
{
const
auto
&
events
=
settings
[
"Events"
];
for
(
auto
iter
=
events
.
beginMap
(),
end
=
events
.
endMap
();
iter
!=
end
;
++
iter
)
{
mEvents
[
iter
->
first
]
=
iter
->
second
;
}
mEvents
.
insert
(
events
.
beginMap
(),
events
.
endMap
());
}
eraseExpired
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment