summaryrefslogtreecommitdiff
path: root/libs/audiographer/audiographer/threader.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/audiographer/audiographer/threader.h')
-rw-r--r--libs/audiographer/audiographer/threader.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/audiographer/audiographer/threader.h b/libs/audiographer/audiographer/threader.h
index e6c3aa97bf..ad6a542126 100644
--- a/libs/audiographer/audiographer/threader.h
+++ b/libs/audiographer/audiographer/threader.h
@@ -23,7 +23,8 @@ class ThreaderException : public Exception
ThreaderException (T const & thrower, std::exception const & e)
: Exception (thrower,
boost::str ( boost::format
- ("\n\t- Dynamic type: %1%\n\t- what(): %2%") % name (e) % e.what() ))
+ ("\n\t- Dynamic type: %1%\n\t- what(): %2%")
+ % DebugUtils::demangled_name (e) % e.what() ))
{ }
};