aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohannes Schickel2009-06-09 15:34:02 +0000
committerJohannes Schickel2009-06-09 15:34:02 +0000
commit91d62c0a617cd2cefb69c2bb2339cfd08641d36d (patch)
treed309df3e09a8bac2425214b36777b3b6bb5f368c /test
parentfcc0b69c073399d4af0443108eaa22cb630b276f (diff)
downloadscummvm-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
Diffstat (limited to 'test')
-rw-r--r--test/common/hashmap.h14
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;