]> git.tdb.fi Git - libs/core.git/commitdiff
Add missing includes
authorMikko Rasa <tdb@tdb.fi>
Sun, 8 Jun 2008 15:17:34 +0000 (15:17 +0000)
committerMikko Rasa <tdb@tdb.fi>
Sun, 8 Jun 2008 15:17:34 +0000 (15:17 +0000)
source/core/application.cpp
source/core/except.cpp
source/debug/demangle.cpp

index 5acae82242b0a6d4106c7d647460934fd6acae12..bcb7e3de49e2cb0b3058844f2559f336cfdc5a50 100644 (file)
@@ -4,8 +4,10 @@ This file is part of libmspcore
 Copyright © 2006 Mikko Rasa, Mikkosoft Productions
 Distributed under the LGPL
 */
+
 #include <signal.h>
 #include <iostream>
+#include <typeinfo>
 #include "../debug/backtrace.h"
 #include "../debug/demangle.h"
 #include "../time/units.h"
index 4b6e4657a4b89833a373f506ec5782e1fcd24728..7ac634d9a30c9ef9c8f8dec01633b5c950c96ef8 100644 (file)
@@ -4,7 +4,9 @@ This file is part of libmspcore
 Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions
 Distributed under the LGPL
 */
+
 #include <sstream>
+#include <cstring>
 #include "except.h"
 
 using namespace std;
index 9ed6e95f84f1d9447ef19d6b31ad1d0fc6b8304f..5c348514fd9bffa57ec0d7cbf6acb4539d198880 100644 (file)
@@ -5,6 +5,7 @@ Copyright © 2007 Mikko Rasa, Mikkosoft Productions
 Distributed under the LGPL
 */
 
+#include <cstdlib>
 #include <cxxabi.h>
 #include "demangle.h"