From 6a5ae22368aa4a5b2c5a92111e1d6c7edcc76195 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Sun, 30 Mar 2008 00:54:46 +0000 Subject: Formatting. svn-id: r31308 --- common/hashmap.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'common/hashmap.h') 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; } -- cgit v1.2.3