From 557031ca117195fea781ef9c9cfb634f847ecce1 Mon Sep 17 00:00:00 2001 From: John Emmas Date: Sat, 18 Jun 2016 11:41:12 +0100 Subject: [PATCH] Remove confusion over ambiguous symbols libboost and libsigc++ both contain symbols called _1() / _2() etc. Forcing the use of namespace sigc causes us to use the ones from sigc++ when in fact, we want the ones from boost. Hopefully this fix will work for all compilers. --- libs/surfaces/osc/osc_controllable.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/libs/surfaces/osc/osc_controllable.cc b/libs/surfaces/osc/osc_controllable.cc index 4e6aa3b078..23bc4a79fb 100644 --- a/libs/surfaces/osc/osc_controllable.cc +++ b/libs/surfaces/osc/osc_controllable.cc @@ -27,7 +27,6 @@ #include "osc.h" #include "osc_controllable.h" -using namespace sigc; using namespace PBD; using namespace ARDOUR; using namespace ArdourSurface;