From 0fa56402be6a9f9e3241939498ff6fd512159889 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 18 Dec 2020 11:31:09 -0700 Subject: [PATCH] move DEBUG::SnapBBT into libtemporal --- libs/ardour/ardour/debug.h | 1 - libs/ardour/debug.cc | 1 - libs/temporal/debug.cc | 2 ++ libs/temporal/temporal/debug.h | 1 + 4 files changed, 3 insertions(+), 2 deletions(-) diff --git a/libs/ardour/ardour/debug.h b/libs/ardour/ardour/debug.h index b54f484a3e..2a2d44f915 100644 --- a/libs/ardour/ardour/debug.h +++ b/libs/ardour/ardour/debug.h @@ -89,7 +89,6 @@ namespace PBD { LIBARDOUR_API extern DebugBits Selection; LIBARDOUR_API extern DebugBits SessionEvents; LIBARDOUR_API extern DebugBits Slave; - LIBARDOUR_API extern DebugBits SnapBBT; LIBARDOUR_API extern DebugBits Solo; LIBARDOUR_API extern DebugBits Soundcloud; LIBARDOUR_API extern DebugBits TFSMEvents; diff --git a/libs/ardour/debug.cc b/libs/ardour/debug.cc index 24c7341589..1c4b65fd2d 100644 --- a/libs/ardour/debug.cc +++ b/libs/ardour/debug.cc @@ -84,7 +84,6 @@ PBD::DebugBits PBD::DEBUG::Push2 = PBD::new_debug_bit ("push2"); PBD::DebugBits PBD::DEBUG::Selection = PBD::new_debug_bit ("selection"); PBD::DebugBits PBD::DEBUG::SessionEvents = PBD::new_debug_bit ("sessionevents"); PBD::DebugBits PBD::DEBUG::Slave = PBD::new_debug_bit ("slave"); -PBD::DebugBits PBD::DEBUG::SnapBBT = PBD::new_debug_bit ("snapbbt"); PBD::DebugBits PBD::DEBUG::Solo = PBD::new_debug_bit ("solo"); PBD::DebugBits PBD::DEBUG::Soundcloud = PBD::new_debug_bit ("Soundcloud"); PBD::DebugBits PBD::DEBUG::TFSMEvents = PBD::new_debug_bit ("tfsmevents"); diff --git a/libs/temporal/debug.cc b/libs/temporal/debug.cc index c8914384aa..121b1181ec 100644 --- a/libs/temporal/debug.cc +++ b/libs/temporal/debug.cc @@ -23,3 +23,5 @@ using namespace std; PBD::DebugBits PBD::DEBUG::TemporalMap = PBD::new_debug_bit ("TemporalMap"); PBD::DebugBits PBD::DEBUG::TemporalDomainConvert = PBD::new_debug_bit ("TemporalDomainConvert"); +PBD::DebugBits PBD::DEBUG::SnapBBT = PBD::new_debug_bit ("SnapBBT"); + diff --git a/libs/temporal/temporal/debug.h b/libs/temporal/temporal/debug.h index 0183fea509..8988fdee6f 100644 --- a/libs/temporal/temporal/debug.h +++ b/libs/temporal/temporal/debug.h @@ -27,6 +27,7 @@ namespace PBD { namespace DEBUG { LIBTEMPORAL_API extern DebugBits TemporalDomainConvert; LIBTEMPORAL_API extern DebugBits TemporalMap; + LIBTEMPORAL_API extern DebugBits SnapBBT; } }