]> git.lyx.org Git - lyx.git/blobdiff - src/debug.h
and this
[lyx.git] / src / debug.h
index 30fcd2501e16285bf891c0900b61fabc409a437d..e8550e3311cf94e91054ebefdf0b6a6b4be8f8c2 100644 (file)
 #ifndef LYXDEBUG_H
 #define LYXDEBUG_H
 
-
 #include "support/debugstream.h"
 
 /** Ideally this should have been a namespace, but since we try to be
   compilable on older C++ compilators too, we use a struct instead.
   This is all the different debug levels that we have.
-*/
*  compilable on older C++ compilators too, we use a struct instead.
*  This is all the different debug levels that we have.
+ */
 struct lyx_debug_trait {
        ///
        enum type {
@@ -74,7 +73,9 @@ struct lyx_debug_trait {
                ///
                EXTERNAL   = (1 << 23),
                ///
-               ANY = 0xffffff
+               DEBUG      = (1 << 31),
+               ///
+               ANY = 0xffffffff
        };
 
        static bool match(type a, type b) {