From 8f147f273a4c68caafaf2ba32972376bf0762414 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 6 Jan 2021 09:59:32 -0700 Subject: [PATCH] add new debug bit for Temporal grid stuff --- libs/temporal/debug.cc | 1 + libs/temporal/temporal/debug.h | 1 + 2 files changed, 2 insertions(+) diff --git a/libs/temporal/debug.cc b/libs/temporal/debug.cc index 47138ccaf6..3087f27603 100644 --- a/libs/temporal/debug.cc +++ b/libs/temporal/debug.cc @@ -23,6 +23,7 @@ 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::Grid = PBD::new_debug_bit ("Grid"); PBD::DebugBits PBD::DEBUG::SnapBBT = PBD::new_debug_bit ("SnapBBT"); PBD::DebugBits PBD::DEBUG::Beats = PBD::new_debug_bit ("Beats"); diff --git a/libs/temporal/temporal/debug.h b/libs/temporal/temporal/debug.h index 3538b95d49..7db5489547 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 Grid; LIBTEMPORAL_API extern DebugBits SnapBBT; LIBTEMPORAL_API extern DebugBits Beats; }