3 monitor tweaks for the_CLA. shift+click to default, and new preset vals
[ardour.git] / libs / pbd / pbd / unwind.h
index cf7998fdd4d39ec96421600f57a5dda1a527cf21..5a0fe265592b8d4ded3a8816782a20a839c4d160 100644 (file)
@@ -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; }