From 98aacd473aa92e22684e1048aa5f672414181835 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner <gunnar.beutner@netways.de> Date: Thu, 7 Feb 2013 09:37:57 +0100 Subject: [PATCH] Removed unused variable. --- test/base-dictionary.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/base-dictionary.cpp b/test/base-dictionary.cpp index c2452b39d..936fec465 100644 --- a/test/base-dictionary.cpp +++ b/test/base-dictionary.cpp @@ -63,10 +63,9 @@ BOOST_AUTO_TEST_CASE(unnamed_order) /* unnamed items are guaranteed to be in whatever order they were * inserted in. */ - String key; Value value; int i = 0; - BOOST_FOREACH(tie(key, value), dictionary) { + BOOST_FOREACH(tie(tuples::ignore, value), dictionary) { BOOST_REQUIRE(value == i); i++; }