- fixed win32 build from last checkin

This commit is contained in:
Mark Vejvoda 2011-01-31 23:17:42 +00:00
parent 0b4eef10c5
commit f373a66c31
2 changed files with 9 additions and 5 deletions

View File

@ -65,4 +65,4 @@ if not "%SVNVERSION%" == "." echo #define SVNVERSION "%SVNVERSION%" > ..\..\sour
msbuild /p:Configuration=Release Glest.sln
rem pause execution so we can see the output before the batch file exits
pause
if not "%1" == "nopause" pause

View File

@ -12,23 +12,27 @@
#ifndef _SHARED_PLATFORM_THREAD_H_
#define _SHARED_PLATFORM_THREAD_H_
//#define DEBUG_MUTEXES
//#define DEBUG_PERFORMANCE_MUTEXES
#include <SDL_thread.h>
#include <SDL_mutex.h>
#include <string>
#ifdef DEBUG_PERFORMANCE_MUTEXES
#include "platform_common.h"
#endif
//#include "util.h"
#include "leak_dumper.h"
//#define DEBUG_MUTEXES
//#define DEBUG_PERFORMANCE_MUTEXES
// =====================================================
// class Thread
// =====================================================
using namespace std;
#ifdef DEBUG_PERFORMANCE_MUTEXES
using namespace Shared::PlatformCommon;
#endif
namespace Shared { namespace Platform {