- compiler fixes for windows

This commit is contained in:
Mark Vejvoda
2011-09-25 23:27:26 +00:00
parent da8e9d2af0
commit 64d1e696b0
4 changed files with 7 additions and 14 deletions

View File

@@ -12,9 +12,7 @@
#define _SHARED_PLATFORM_PLATFORMCOMMON_H_
#ifdef WIN32
#include <windows.h>
#endif
#include <string>
@@ -29,6 +27,10 @@
#include <map>
#include "leak_dumper.h"
#if (defined WIN32) && !(defined snprintf)
#define snprintf _snprintf
#endif
using std::string;
using std::vector;
using std::list;