aboutsummaryrefslogtreecommitdiff
path: root/common/hashmap.h
diff options
context:
space:
mode:
authorJohannes Schickel2008-03-30 00:54:46 +0000
committerJohannes Schickel2008-03-30 00:54:46 +0000
commit6a5ae22368aa4a5b2c5a92111e1d6c7edcc76195 (patch)
treee3d8916e976ccfff64fb4504a53a5d31c8563e36 /common/hashmap.h
parent85f8d617b09a05a4eecb18e542922772fadd279c (diff)
downloadscummvm-rg350-6a5ae22368aa4a5b2c5a92111e1d6c7edcc76195.tar.gz
scummvm-rg350-6a5ae22368aa4a5b2c5a92111e1d6c7edcc76195.tar.bz2
scummvm-rg350-6a5ae22368aa4a5b2c5a92111e1d6c7edcc76195.zip
Formatting.
svn-id: r31308
Diffstat (limited to 'common/hashmap.h')
-rw-r--r--common/hashmap.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/common/hashmap.h b/common/hashmap.h
index 9d5b6cbf6e..1ab6bb84a3 100644
--- a/common/hashmap.h
+++ b/common/hashmap.h
@@ -98,13 +98,11 @@ public:
Node(const Key &key) : _key(key), _value() {}
};
- Node* allocNode(const Key& key)
- {
+ Node* allocNode(const Key& key) {
return new Node(key);
}
- void freeNode(Node* node)
- {
+ void freeNode(Node* node) {
delete node;
}