Navigation Menu

Skip to content

Commit

Permalink
test: remove unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Aug 10, 2012
1 parent 72b56f6 commit 8c0d60d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions test/unit/core/dat/test-trie.cpp
Expand Up @@ -487,7 +487,6 @@ namespace test_dat_trie
stack.empty() ? (keyset.size() + 1) : stack.top();
const std::pair<Keyset::iterator, bool> it_bool_pair =
keyset.insert(std::make_pair(str, key_id));
const Keyset::const_iterator it = it_bool_pair.first;
const bool to_be_inserted = it_bool_pair.second;
if (!stack.empty() && to_be_inserted) {
stack.pop();
Expand Down Expand Up @@ -622,7 +621,6 @@ namespace test_dat_trie
stack.empty() ? (keyset.size() + 1) : stack.top();
const std::pair<Keyset::iterator, bool> it_bool_pair =
keyset.insert(std::make_pair(str, key_id));
const Keyset::const_iterator it = it_bool_pair.first;
const bool to_be_inserted = it_bool_pair.second;
if (!stack.empty() && to_be_inserted) {
stack.pop();
Expand Down

0 comments on commit 8c0d60d

Please sign in to comment.