aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/hashmap.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/common/hashmap.h b/common/hashmap.h
index 36e032625e..3f028d69ed 100644
--- a/common/hashmap.h
+++ b/common/hashmap.h
@@ -61,6 +61,10 @@
#define USE_HASHMAP_MEMORY_POOL
#ifdef USE_HASHMAP_MEMORY_POOL
#include "common/memorypool.h"
+// FIXME: we sadly can't assume standard C++ to be present
+// on every system we support, so we should get rid of this.
+// The solution should be to write a simple placement new
+// on our own.
#include <new>
#endif