summaryrefslogtreecommitdiff
path: root/libs/ardour
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-05-31 17:39:24 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-05-31 17:39:38 -0400
commit14b4bac7f21d5dfd0d88887d34008aec646c086d (patch)
tree72a64aa7e132388c24e1cb01a5cd86c75ec75737 /libs/ardour
parent9ff3c55e34a9303ea1530aec7f48c27dbfc370f2 (diff)
comment out a DEBUG_TRACE statement that causes issues for clang, reasons are unclear
Diffstat (limited to 'libs/ardour')
-rw-r--r--libs/ardour/stripable.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/libs/ardour/stripable.cc b/libs/ardour/stripable.cc
index 9a7c668f67..c21d68c0a6 100644
--- a/libs/ardour/stripable.cc
+++ b/libs/ardour/stripable.cc
@@ -57,8 +57,10 @@ Stripable::set_presentation_info (PresentationInfo pi, bool notify_class_listene
{
if (pi != presentation_info()) {
+#ifndef __APPLE__
+ /* clang can't deal with the operator<< (ostream&,PresentationInfo&) method. not sure why yet. */
DEBUG_TRACE (DEBUG::OrderKeys, string_compose ("%1: set presentation info to %2\n", name(), pi));
-
+#endif
if (is_master()) {
_presentation_info = PresentationInfo (0, PresentationInfo::MasterOut);
} else if (is_monitor()) {