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

This commit is contained in:
Jesse Beder
2015-01-24 15:34:39 -06:00
parent f1a889a0b9
commit c9729b26a4

View File

@@ -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;
}
}