From cc543280d9869d4a7b800d547c53e38b13d02cea Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 12 Jun 2015 18:14:09 -0400 Subject: We were 2 more debug "bits" away from overflow, so recast PBD::DEBUG mechanism away from a 64bit integer and toward std::bitset. Clean up a few minor related PBD::DEBUG issues along the way --- libs/evoral/src/debug.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libs/evoral/src/debug.cpp') diff --git a/libs/evoral/src/debug.cpp b/libs/evoral/src/debug.cpp index 9e82b93d1b..785c33bf1b 100644 --- a/libs/evoral/src/debug.cpp +++ b/libs/evoral/src/debug.cpp @@ -1,6 +1,6 @@ #include "evoral/types.hpp" -uint64_t PBD::DEBUG::Sequence = PBD::new_debug_bit ("sequence"); -uint64_t PBD::DEBUG::Note = PBD::new_debug_bit ("note"); -uint64_t PBD::DEBUG::ControlList = PBD::new_debug_bit ("controllist"); +PBD::DebugBits PBD::DEBUG::Sequence = PBD::new_debug_bit ("sequence"); +PBD::DebugBits PBD::DEBUG::Note = PBD::new_debug_bit ("note"); +PBD::DebugBits PBD::DEBUG::ControlList = PBD::new_debug_bit ("controllist"); -- cgit v1.2.3