HAd to add a #define for includes on non WIN32 platform

This commit is contained in:
Mark Vejvoda 2010-04-24 11:33:50 +00:00
parent 1d6f3ebe58
commit 472e34dc6c
2 changed files with 9 additions and 2 deletions

View File

@ -24,7 +24,10 @@
#include "opengl.h"
#include "faction.h"
#include "factory_repository.h"
#include <cmath>
#ifndef WIN32
#include <cmath>
#endif
#include "leak_dumper.h"

View File

@ -23,7 +23,11 @@
#include "skill_type.h"
#include "core_data.h"
#include "renderer.h"
#include <cmath>
#ifndef WIN32
#include <cmath>
#endif
#include "socket.h"
#include "leak_dumper.h"