summaryrefslogtreecommitdiff
path: root/libs/pbd/pbd/stacktrace.h
diff options
context:
space:
mode:
authorJohn Emmas <johne53@tiscali.co.uk>2013-12-01 14:26:08 +0000
committerJohn Emmas <johne53@tiscali.co.uk>2013-12-01 14:26:08 +0000
commit6bd36896e7d5ab9d80a2be5fd2d097fdd4680b13 (patch)
tree0b3e7b3f769e3ff8d1fbde5139dbcaec0935ce23 /libs/pbd/pbd/stacktrace.h
parentb855e5f3220027502a3c88f189d511fe2a5a3c2b (diff)
'libs/pbd' - DLL visibility stuff and associated changes needed for building with MSVC. Currently includes debugging information and things that are just commented out until we have known compatibility with the other platforms (i.e. contains stuff to be removed at a later date)
Diffstat (limited to 'libs/pbd/pbd/stacktrace.h')
-rw-r--r--libs/pbd/pbd/stacktrace.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/libs/pbd/pbd/stacktrace.h b/libs/pbd/pbd/stacktrace.h
index 77f5d38fb8..672ee2acad 100644
--- a/libs/pbd/pbd/stacktrace.h
+++ b/libs/pbd/pbd/stacktrace.h
@@ -40,10 +40,10 @@
namespace PBD {
LIBPBD_API void stacktrace (std::ostream& out, int levels = 0);
LIBPBD_API void trace_twb();
- std::string demangle (const std::string&);
+/* JE - !!!! Declaration might possibly get removed (except it's still used in 'libs/canvas/item.cc') */ std::string demangle (const std::string&);
template<typename T>
-class LIBPBD_API thing_with_backtrace
+class /*LIBPBD_API*/ thing_with_backtrace
{
public:
thing_with_backtrace () {
@@ -112,11 +112,11 @@ private:
static Glib::Threads::Mutex all_mutex;
};
-template<typename T> LIBPBD_API std::list<PBD::thing_with_backtrace<T> *> PBD::thing_with_backtrace<T>::all;
-template<typename T> LIBPBD_API Glib::Threads::Mutex PBD::thing_with_backtrace<T>::all_mutex;
+template<typename T> /*LIBPBD_API*/ std::list<PBD::thing_with_backtrace<T> *> PBD::thing_with_backtrace<T>::all;
+template<typename T> /*LIBPBD_API*/ Glib::Threads::Mutex PBD::thing_with_backtrace<T>::all_mutex;
} // namespace PBD
-
+// JE - !!!!#include "../pbd/stacktrace.impl"
#endif /* __libpbd_stacktrace_h__ */