diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-05-24 19:28:25 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-05-24 19:28:25 +0300 |
commit | 612b060e8a5d9fed1e135c7b5a8108f4d8910374 (patch) | |
tree | 9f856f6a5f0ec3ef4e3e7a4aacaa37f6ff1f21de /src/debug/debug_new.h | |
parent | 4ffba39b1411b230d6f79f44eadacfdbf3c85d40 (diff) | |
download | plus-612b060e8a5d9fed1e135c7b5a8108f4d8910374.tar.gz plus-612b060e8a5d9fed1e135c7b5a8108f4d8910374.tar.bz2 plus-612b060e8a5d9fed1e135c7b5a8108f4d8910374.tar.xz plus-612b060e8a5d9fed1e135c7b5a8108f4d8910374.zip |
Fix code style.
Diffstat (limited to 'src/debug/debug_new.h')
-rw-r--r-- | src/debug/debug_new.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/debug/debug_new.h b/src/debug/debug_new.h index 5bcd06eb0..986092c2f 100644 --- a/src/debug/debug_new.h +++ b/src/debug/debug_new.h @@ -105,10 +105,10 @@ void operator delete[](void*) throw(); #endif /* Control variables */ -extern bool new_autocheck_flag; // default to true: call check_leaks() on exit -extern bool new_verbose_flag; // default to false: no verbose information -extern FILE* new_output_fp; // default to stderr: output to console -extern const char* new_progname;// default to NULL; should be assigned argv[0] +extern bool new_autocheck_flag; // default to true: call check_leaks() on exit +extern bool new_verbose_flag; // default to false: no verbose information +extern FILE* new_output_fp; // default to stderr: output to console +extern const char* new_progname; // default to NULL; should be assigned argv[0] /** * @def DEBUG_NEW |