diff options
author | George Hazan <george.hazan@gmail.com> | 2014-01-02 18:29:41 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-01-02 18:29:41 +0000 |
commit | c55fcaf260854e31a9a49b8310f4ae59171f7d5e (patch) | |
tree | 5d639b0021af5af030d9db588332617658ae71a7 /src/core/commonheaders.h | |
parent | 788354fa2dd6edf9ed3c2f5e96daa441163573d1 (diff) |
huh... no STL in the core at all
git-svn-id: http://svn.miranda-ng.org/main/trunk@7465 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/core/commonheaders.h')
-rw-r--r-- | src/core/commonheaders.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/commonheaders.h b/src/core/commonheaders.h index 482bab7f2d..5cb9c620a2 100644 --- a/src/core/commonheaders.h +++ b/src/core/commonheaders.h @@ -41,9 +41,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include <vssym32.h>
#include <Shlwapi.h>
-#include <vector>
-using namespace std;
+#ifdef _DEBUG
+#include <crtdbg.h>
+#endif
+#include <malloc.h>
#include <stdio.h>
#include <time.h>
#include <stddef.h>
|