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
savoirfairelinux
jami-daemon
Commits
a33423ea
Commit
a33423ea
authored
Aug 13, 2013
by
Tristan Matthews
Browse files
* #28351: sfl_config: use range-based for loop
parent
df8643fd
Changes
1
Hide whitespace changes
Inline
Side-by-side
daemon/src/config/sfl_config.cpp
View file @
a33423ea
...
...
@@ -91,8 +91,8 @@ ConfigTree::getSections() const
{
std
::
list
<
std
::
string
>
sections
;
for
(
SectionMap
::
const_iterator
iter
=
sections_
.
begin
();
iter
!=
sections_
.
end
();
++
iter
)
sections
.
push_back
(
iter
->
first
);
for
(
const
auto
&
iter
:
sections_
)
sections
.
push_back
(
iter
.
first
);
return
sections
;
}
...
...
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