Changes in / [c7b39a:33d774]


Ignore:
Location:
src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/Helpers/MemDebug.cpp

    rc7b39a r33d774  
    66 */
    77
    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
    2710
    2811#include <iostream>
     
    506489}
    507490#endif
     491#endif
  • src/Helpers/MemDebug.hpp

    rc7b39a r33d774  
    2121 * your sourcefiles.
    2222 */
     23#ifndef NDEBUG
     24#ifndef NO_MEMDEBUG
    2325
    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
    3128#endif
    32 
    33 // NO_MEMDEBUG and MEMDEBUG are mutually exclusive, but at least one must be set
    34 #ifdef NO_MEMDEBUG
    35 # ifdef MEMDEBUG
    36 #   undef MEMDEBUG
    37 # endif
    38 #else
    39 # ifndef MEMDEBUG
    40 #   define MEMDEBUG
    41 # endif
    42 #endif
    43 
    44 #ifdef MEMDEBUG
    4529
    4630#include <new>
     
    9983#endif
    10084
    101 #else
     85#endif
     86#endif
     87
     88
     89#ifdef NDEBUG
     90#undef MEMDEBUG
     91#endif
     92
     93#ifndef MEMDEBUG
    10294// memory debugging was disabled
    10395
     
    112104
    113105#endif
    114 
    115 
    116106#endif /* MEMDEBUG_HPP_ */
  • src/UIElements/TextUI/TextWindow.hpp

    rc7b39a r33d774  
    1111#include "MainWindow.hpp"
    1212
    13 #include <string>
    1413#include <set>
    1514
Note: See TracChangeset for help on using the changeset viewer.