Fix non-PCH build

This commit is contained in:
leak
2014-06-23 21:02:13 +02:00
parent f9a08ac1c9
commit 28b61812cf
2 changed files with 6 additions and 1 deletions

View File

@@ -23,6 +23,7 @@
#include <string>
#include <map>
#include <vector>
/** ObjectRegistry holds all registry item of the same type
*/

View File

@@ -15,11 +15,15 @@
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <sstream>
#if PLATFORM == PLATFORM_WINDOWS
#include <windows.h>
#endif
#include "AppenderConsole.h"
#include "Config.h"
#include "Util.h"
#include <sstream>
AppenderConsole::AppenderConsole(uint8 id, std::string const& name, LogLevel level, AppenderFlags flags):
Appender(id, name, APPENDER_CONSOLE, level, flags), _colored(false)