From a04e56f3a83eb863872ed112d757dd7c3eb9675a Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Thu, 4 Dec 2025 23:55:37 +0100 Subject: [PATCH] Fix builds with clang chan_count.h:216:29: note: 'operator<<' should be declared prior to the call site or in namespace 'ARDOUR' --- libs/ardour/vst3_plugin.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libs/ardour/vst3_plugin.cc b/libs/ardour/vst3_plugin.cc index cc938827e8..a97cf5cbbc 100644 --- a/libs/ardour/vst3_plugin.cc +++ b/libs/ardour/vst3_plugin.cc @@ -16,13 +16,16 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ +#ifdef WAF_BUILD +#include "libardour-config.h" +#endif + #include #include "pbd/gstdio_compat.h" #include #include "pbd/basename.h" -#include "pbd/compose.h" #include "pbd/convert.h" #include "pbd/debug.h" #include "pbd/error.h"