From d3eb2f6e69a2aeb7be4b93af096397efaf7603a1 Mon Sep 17 00:00:00 2001 From: John Emmas Date: Sun, 9 Aug 2015 15:32:52 +0100 Subject: [PATCH] Make sure that the ostream operator << (for class ChanCount) gets correctly exported from libardour --- libs/ardour/ardour/chan_count.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/ardour/chan_count.h b/libs/ardour/ardour/chan_count.h index 9f9fd07543..b613f67a3c 100644 --- a/libs/ardour/ardour/chan_count.h +++ b/libs/ardour/ardour/chan_count.h @@ -154,7 +154,7 @@ private: } // namespace ARDOUR -std::ostream& operator<<(std::ostream& o, const ARDOUR::ChanCount& c); +LIBARDOUR_API std::ostream& operator<<(std::ostream& o, const ARDOUR::ChanCount& c); #endif // __ardour_chan_count_h__