Changes in / [c7b39a:33d774]
- Location:
- src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Helpers/MemDebug.cpp
rc7b39a r33d774 6 6 */ 7 7 8 // NDEBUG implies NO_MEMDEBUG 9 #ifdef NDEBUG 10 # ifndef NO_MEMDEBUG 11 # define NO_MEMDEBUG 12 # endif 13 #endif 14 15 // NO_MEMDEBUG and MEMDEBUG are mutually exclusive, but at least one must be set 16 #ifdef NO_MEMDEBUG 17 # ifdef MEMDEBUG 18 # undef MEMDEBUG 19 # endif 20 #else 21 # ifndef MEMDEBUG 22 # define MEMDEBUG 23 # endif 24 #endif 25 26 #ifdef MEMDEBUG 8 #ifndef NDEBUG 9 #ifndef NO_MEMDEBUG 27 10 28 11 #include <iostream> … … 506 489 } 507 490 #endif 491 #endif -
src/Helpers/MemDebug.hpp
rc7b39a r33d774 21 21 * your sourcefiles. 22 22 */ 23 #ifndef NDEBUG 24 #ifndef NO_MEMDEBUG 23 25 24 // Set all flags in a way that makes sense 25 26 // NDEBUG implies NO_MEMDEBUG 27 #ifdef NDEBUG 28 # ifndef NO_MEMDEBUG 29 # define NO_MEMDEBUG 30 # endif 26 #ifndef MEMDEBUG 27 #define MEMDEBUG 31 28 #endif 32 33 // NO_MEMDEBUG and MEMDEBUG are mutually exclusive, but at least one must be set34 #ifdef NO_MEMDEBUG35 # ifdef MEMDEBUG36 # undef MEMDEBUG37 # endif38 #else39 # ifndef MEMDEBUG40 # define MEMDEBUG41 # endif42 #endif43 44 #ifdef MEMDEBUG45 29 46 30 #include <new> … … 99 83 #endif 100 84 101 #else 85 #endif 86 #endif 87 88 89 #ifdef NDEBUG 90 #undef MEMDEBUG 91 #endif 92 93 #ifndef MEMDEBUG 102 94 // memory debugging was disabled 103 95 … … 112 104 113 105 #endif 114 115 116 106 #endif /* MEMDEBUG_HPP_ */ -
src/UIElements/TextUI/TextWindow.hpp
rc7b39a r33d774 11 11 #include "MainWindow.hpp" 12 12 13 #include <string>14 13 #include <set> 15 14
Note:
See TracChangeset
for help on using the changeset viewer.