From dfec88e1a3d79eb1991e3b2306dd8de4fa1ef475 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sun, 29 Dec 2013 13:59:37 -0500 Subject: [PATCH] add proper namespace to PBD::demangle for systems without execinfo --- libs/pbd/stacktrace.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/pbd/stacktrace.cc b/libs/pbd/stacktrace.cc index e45aec22bc..0177b8c9e8 100644 --- a/libs/pbd/stacktrace.cc +++ b/libs/pbd/stacktrace.cc @@ -105,7 +105,7 @@ PBD::stacktrace (std::ostream& out, int levels) #else std::string -demangle (std::string const & l) +PBD::demangle (std::string const & l) { return std::string(); }