]> git.tdb.fi Git - libs/core.git/blobdiff - source/core/error.h
Make this thing actually compile
[libs/core.git] / source / core / error.h
index 1f9662e274b1d9b087d9cb16e5c1cf30f8c6811b..eecda49bd00cf8553a6f1be02c7c739a1e07e667 100644 (file)
@@ -9,7 +9,7 @@ Distributed under the LGPL
 
 #include <exception>
 #include <string>
-#include "backtrace.h"
+#include "../debug/backtrace.h"
 
 namespace Msp {
 
@@ -23,10 +23,10 @@ public:
        ~Exception() throw() { }
 
        const char *what() const throw() { return w.c_str(); }
-       const Backtrace &get_backtrace() const throw() { return bt; }
+       const Debug::Backtrace &get_backtrace() const throw() { return bt; }
 private:
        std::string w;
-       Backtrace bt;
+       Debug::Backtrace bt;
 
 };