diff options
author | Johannes Schickel | 2008-03-30 18:59:24 +0000 |
---|---|---|
committer | Johannes Schickel | 2008-03-30 18:59:24 +0000 |
commit | 39995e29adf6c134b8606cc5a201cc0479638967 (patch) | |
tree | e44b310e0cb47116c46284bb926c6340cc226941 | |
parent | a03547dc8ec08d6497cade6a39808cd411ac3af9 (diff) | |
download | scummvm-rg350-39995e29adf6c134b8606cc5a201cc0479638967.tar.gz scummvm-rg350-39995e29adf6c134b8606cc5a201cc0479638967.tar.bz2 scummvm-rg350-39995e29adf6c134b8606cc5a201cc0479638967.zip |
Added fixme regarding header 'new'.
svn-id: r31339
-rw-r--r-- | common/hashmap.h | 4 |
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 |