Core: Fix non pch build (gcc)

This commit is contained in:
Vincent-Michael
2014-07-20 02:54:12 +02:00
parent a59ec8c8e9
commit 0531f52008
10 changed files with 26 additions and 9 deletions

View File

@@ -16,14 +16,14 @@
*/
#include <sstream>
#if PLATFORM == PLATFORM_WINDOWS
#include <windows.h>
#endif
#include "AppenderConsole.h"
#include "Config.h"
#include "Util.h"
#if PLATFORM == PLATFORM_WINDOWS
#include <Windows.h>
#endif
AppenderConsole::AppenderConsole(uint8 id, std::string const& name, LogLevel level, AppenderFlags flags):
Appender(id, name, APPENDER_CONSOLE, level, flags), _colored(false)