Commit c9729b26 authored by Jesse Beder's avatar Jesse Beder
Browse files

Remove stray 'auto' that leaked in without C++11

parent f1a889a0
...@@ -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;
} }
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment