aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorJohannes Schickel2008-03-30 18:59:24 +0000
committerJohannes Schickel2008-03-30 18:59:24 +0000
commit39995e29adf6c134b8606cc5a201cc0479638967 (patch)
treee44b310e0cb47116c46284bb926c6340cc226941 /common
parenta03547dc8ec08d6497cade6a39808cd411ac3af9 (diff)
downloadscummvm-rg350-39995e29adf6c134b8606cc5a201cc0479638967.tar.gz
scummvm-rg350-39995e29adf6c134b8606cc5a201cc0479638967.tar.bz2
scummvm-rg350-39995e29adf6c134b8606cc5a201cc0479638967.zip
Added fixme regarding header 'new'.
svn-id: r31339
Diffstat (limited to 'common')
-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