Remove stray 'auto' that leaked in without C++11
This commit is contained in:
parent
7193d3644d
commit
94a26b2a24
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user