summaryrefslogtreecommitdiff
path: root/libs/pbd/pbd/debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/pbd/pbd/debug.h')
-rw-r--r--libs/pbd/pbd/debug.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/libs/pbd/pbd/debug.h b/libs/pbd/pbd/debug.h
index e4fa525481..a372c3963c 100644
--- a/libs/pbd/pbd/debug.h
+++ b/libs/pbd/pbd/debug.h
@@ -30,7 +30,7 @@
namespace PBD {
- typedef std::bitset<64> DebugBits;
+ typedef std::bitset<128> DebugBits;
LIBPBD_API extern DebugBits debug_bits;
LIBPBD_API DebugBits new_debug_bit (const char* name);
@@ -51,6 +51,11 @@ namespace PBD {
LIBPBD_API extern DebugBits AbstractUI;
LIBPBD_API extern DebugBits Configuration;
LIBPBD_API extern DebugBits FileUtils;
+
+ /* See notes in ../debug.cc on why these are defined here */
+
+ LIBPBD_API extern DebugBits WavesMIDI;
+ LIBPBD_API extern DebugBits WavesAudio;
}
}