summaryrefslogtreecommitdiff
path: root/libs/pbd/pbd/failed_constructor.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/pbd/pbd/failed_constructor.h')
-rw-r--r--libs/pbd/pbd/failed_constructor.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/libs/pbd/pbd/failed_constructor.h b/libs/pbd/pbd/failed_constructor.h
index b13964e355..92c3f19c76 100644
--- a/libs/pbd/pbd/failed_constructor.h
+++ b/libs/pbd/pbd/failed_constructor.h
@@ -22,7 +22,9 @@
#include <exception>
-class failed_constructor : public std::exception {
+#include "pbd/libpbd_visibility.h"
+
+class LIBPBD_API failed_constructor : public std::exception {
public:
virtual const char *what() const throw() { return "failed constructor"; }
};