diff options
author | Johannes Schickel | 2009-06-09 15:34:02 +0000 |
---|---|---|
committer | Johannes Schickel | 2009-06-09 15:34:02 +0000 |
commit | 91d62c0a617cd2cefb69c2bb2339cfd08641d36d (patch) | |
tree | d309df3e09a8bac2425214b36777b3b6bb5f368c | |
parent | fcc0b69c073399d4af0443108eaa22cb630b276f (diff) | |
download | scummvm-rg350-91d62c0a617cd2cefb69c2bb2339cfd08641d36d.tar.gz scummvm-rg350-91d62c0a617cd2cefb69c2bb2339cfd08641d36d.tar.bz2 scummvm-rg350-91d62c0a617cd2cefb69c2bb2339cfd08641d36d.zip |
Changed some lines to tabs instead of whitespaces for identation.
svn-id: r41401
-rw-r--r-- | test/common/hashmap.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/test/common/hashmap.h b/test/common/hashmap.h index 13f630430c..6476005eaf 100644 --- a/test/common/hashmap.h +++ b/test/common/hashmap.h @@ -112,20 +112,20 @@ class HashMapTestSuite : public CxxTest::TestSuite // NB: The usefulness of this example depends strongly on the // specific hashmap implementation. // It is constructed to insert multiple colliding elements. - Common::HashMap<int, int> h; - h[5] = 1; - h[32+5] = 1; - h[64+5] = 1; - h[128+5] = 1; + Common::HashMap<int, int> h; + h[5] = 1; + h[32+5] = 1; + h[64+5] = 1; + h[128+5] = 1; TS_ASSERT(h.contains(5)); TS_ASSERT(h.contains(32+5)); TS_ASSERT(h.contains(64+5)); TS_ASSERT(h.contains(128+5)); - h.erase(32+5); + h.erase(32+5); TS_ASSERT(h.contains(5)); TS_ASSERT(h.contains(64+5)); TS_ASSERT(h.contains(128+5)); - h.erase(5); + h.erase(5); TS_ASSERT(h.contains(64+5)); TS_ASSERT(h.contains(128+5)); h[32+5] = 1; |