summaryrefslogtreecommitdiff
path: root/gtk2_ardour/debug.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2015-06-12 18:14:09 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2015-06-12 18:14:09 -0400
commitcc543280d9869d4a7b800d547c53e38b13d02cea (patch)
treeaa26b29a02fa43ff24e5c9c777cb5294bf67e8e9 /gtk2_ardour/debug.h
parent10643779b6f039a7458bd0c970ef40ac80ea0568 (diff)
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
Diffstat (limited to 'gtk2_ardour/debug.h')
-rw-r--r--gtk2_ardour/debug.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk2_ardour/debug.h b/gtk2_ardour/debug.h
index db0b3c123f..660e674a4a 100644
--- a/gtk2_ardour/debug.h
+++ b/gtk2_ardour/debug.h
@@ -26,10 +26,10 @@
namespace PBD {
namespace DEBUG {
- extern uint64_t Drags;
- extern uint64_t CutNPaste;
- extern uint64_t Accelerators;
- extern uint64_t GUITiming;
+ extern DebugBits Drags;
+ extern DebugBits CutNPaste;
+ extern DebugBits Accelerators;
+ extern DebugBits GUITiming;
}
}