Remove stray 'auto' that leaked in without C++11
This commit is contained in:
parent
f1a889a0b9
commit
c9729b26a4
@ -267,8 +267,8 @@ TEST(NodeTest, KeyNodeExitsScope) {
|
||||
Node temp("Hello, world");
|
||||
node[temp] = 0;
|
||||
}
|
||||
for (const auto& kv : node) {
|
||||
(void)kv;
|
||||
for (Node::const_iterator it = node.begin(); it != node.end(); ++it) {
|
||||
(void)it;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user