Removed unused variable.

This commit is contained in:
Gunnar Beutner 2013-02-07 09:37:57 +01:00
parent c04cfb9dac
commit 98aacd473a
1 changed files with 1 additions and 2 deletions

View File

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