diff options
author | Eugene Sandulenko | 2010-08-17 12:47:18 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2010-08-17 12:47:18 +0000 |
commit | 7dfd8f9ce25ec16255f298127319a3888daa6d60 (patch) | |
tree | 869ea961c1cde26c1d03d931458fff2f2d2c8d15 /common | |
parent | 1ac434165d047c0b61cd77c4ba4e206172ca511d (diff) | |
download | scummvm-rg350-7dfd8f9ce25ec16255f298127319a3888daa6d60.tar.gz scummvm-rg350-7dfd8f9ce25ec16255f298127319a3888daa6d60.tar.bz2 scummvm-rg350-7dfd8f9ce25ec16255f298127319a3888daa6d60.zip |
COMMON: Remove redundant include from str.cpp
If it is needed for your specific platform, then readd it,
but for that platform. Although to me it looks all redundant.
svn-id: r52155
Diffstat (limited to 'common')
-rw-r--r-- | common/str.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/common/str.cpp b/common/str.cpp index 2a0130dbe4..cc8e236f4b 100644 --- a/common/str.cpp +++ b/common/str.cpp @@ -30,11 +30,6 @@ #include <stdarg.h> -#if !defined(__SYMBIAN32__) -#include <new> -#endif - - namespace Common { MemoryPool *g_refCountPool = 0; // FIXME: This is never freed right now |