diff options
author | Johannes Schickel | 2008-03-30 00:54:46 +0000 |
---|---|---|
committer | Johannes Schickel | 2008-03-30 00:54:46 +0000 |
commit | 6a5ae22368aa4a5b2c5a92111e1d6c7edcc76195 (patch) | |
tree | e3d8916e976ccfff64fb4504a53a5d31c8563e36 /common/hashmap.h | |
parent | 85f8d617b09a05a4eecb18e542922772fadd279c (diff) | |
download | scummvm-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.h | 6 |
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; } |