From: Mikko Rasa Date: Sun, 8 Jun 2008 15:17:34 +0000 (+0000) Subject: Add missing includes X-Git-Tag: 1.0~7 X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=commitdiff_plain;h=20e1beb546c26eae3b1a61ab2051108a7dca221f;hp=b68a2931b5d9d8cda445be184fcc3fa573be49d1 Add missing includes --- diff --git a/source/core/application.cpp b/source/core/application.cpp index 5acae82..bcb7e3d 100644 --- a/source/core/application.cpp +++ b/source/core/application.cpp @@ -4,8 +4,10 @@ This file is part of libmspcore Copyright © 2006 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ + #include #include +#include #include "../debug/backtrace.h" #include "../debug/demangle.h" #include "../time/units.h" diff --git a/source/core/except.cpp b/source/core/except.cpp index 4b6e465..7ac634d 100644 --- a/source/core/except.cpp +++ b/source/core/except.cpp @@ -4,7 +4,9 @@ This file is part of libmspcore Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ + #include +#include #include "except.h" using namespace std; diff --git a/source/debug/demangle.cpp b/source/debug/demangle.cpp index 9ed6e95..5c34851 100644 --- a/source/debug/demangle.cpp +++ b/source/debug/demangle.cpp @@ -5,6 +5,7 @@ Copyright © 2007 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ +#include #include #include "demangle.h"