| Index: src/splay-tree.h
|
| diff --git a/src/splay-tree.h b/src/splay-tree.h
|
| index 5448fcd042a44daca7cdbb568c55a832ca0850cf..30e5d6787f3ee62ea014f8c28f60bcc6281f3f3f 100644
|
| --- a/src/splay-tree.h
|
| +++ b/src/splay-tree.h
|
| @@ -35,8 +35,8 @@ class SplayTree {
|
|
|
| class Locator;
|
|
|
| - SplayTree(AllocationPolicy allocator = AllocationPolicy())
|
| - : root_(NULL), allocator_(allocator) { }
|
| + explicit SplayTree(AllocationPolicy allocator = AllocationPolicy())
|
| + : root_(NULL), allocator_(allocator) {}
|
| ~SplayTree();
|
|
|
| INLINE(void* operator new(size_t size,
|
|
|