X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Fcore%2Ferror.cpp;h=defed2f599d2ca879895c91b03031a8a829cd94e;hp=727fa215adf3989b9f37c52f7fecae8c9f577f34;hb=9e8e96c9e98e4aed3713ca09011aebafc9f62f87;hpb=521cf1db00f8ce2d9f9494dca503d6c17d89ac2f diff --git a/source/core/error.cpp b/source/core/error.cpp index 727fa21..defed2f 100644 --- a/source/core/error.cpp +++ b/source/core/error.cpp @@ -5,7 +5,6 @@ Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ #include -#include "backtrace.h" #include "error.h" using namespace std; @@ -16,7 +15,7 @@ Exception::Exception(const string &w_): w(w_) { #ifdef WITH_EXCEPTION_BACKTRACE - bt=Backtrace::create(); + bt=Debug::Backtrace::create(); #endif }