summaryrefslogtreecommitdiff
path: root/libs/pbd/pbd/unwind.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/pbd/pbd/unwind.h')
-rw-r--r--libs/pbd/pbd/unwind.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/pbd/pbd/unwind.h b/libs/pbd/pbd/unwind.h
index cf7998fdd4..5a0fe26559 100644
--- a/libs/pbd/pbd/unwind.h
+++ b/libs/pbd/pbd/unwind.h
@@ -25,7 +25,7 @@
namespace PBD {
template <typename T>
-class LIBPBD_API Unwinder {
+class /*LIBPBD_API*/ Unwinder {
public:
Unwinder (T& var, T new_val) : _var (var), _old_val (var) { var = new_val; }
~Unwinder () { _var = _old_val; }