mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-15 06:08:35 +00:00
Formatting.
svn-id: r31308
This commit is contained in:
parent
85f8d617b0
commit
6a5ae22368
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user