]> git.lyx.org Git - lyx.git/blobdiff - src/debug.h
fix crash after removing a table row (again due to uncorrected cursor
[lyx.git] / src / debug.h
index d19d350913459d34002507b0a4da630d1e9d8f58..e8550e3311cf94e91054ebefdf0b6a6b4be8f8c2 100644 (file)
@@ -16,9 +16,9 @@
 #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 {
@@ -73,7 +73,9 @@ struct lyx_debug_trait {
                ///
                EXTERNAL   = (1 << 23),
                ///
-               ANY = 0xffffff
+               DEBUG      = (1 << 31),
+               ///
+               ANY = 0xffffffff
        };
 
        static bool match(type a, type b) {