Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
yaml-cpp
Commits
c9729b26
Commit
c9729b26
authored
Jan 24, 2015
by
Jesse Beder
Browse files
Remove stray 'auto' that leaked in without C++11
parent
f1a889a0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
test/node/node_test.cpp
test/node/node_test.cpp
+2
-2
No files found.
test/node/node_test.cpp
View file @
c9729b26
...
@@ -267,8 +267,8 @@ TEST(NodeTest, KeyNodeExitsScope) {
...
@@ -267,8 +267,8 @@ TEST(NodeTest, KeyNodeExitsScope) {
Node
temp
(
"Hello, world"
);
Node
temp
(
"Hello, world"
);
node
[
temp
]
=
0
;
node
[
temp
]
=
0
;
}
}
for
(
const
auto
&
kv
:
node
)
{
for
(
Node
::
const_iterator
it
=
node
.
begin
();
it
!=
node
.
end
();
++
it
)
{
(
void
)
kv
;
(
void
)
it
;
}
}
}
}
...
...
Write
Preview
Markdown
is supported
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