diff options
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/show.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/utils/show.h b/utils/show.h index a687868c..6f601d47 100755 --- a/utils/show.h +++ b/utils/show.h @@ -3,7 +3,9 @@ #ifndef SHOWS #include <iostream> +#define SHOWS std::cerr #endif + /* usage: #if DEBUG # define IFD(x) x @@ -23,9 +25,6 @@ careful: none of this is wrapped in a block. so you can't use one of these macr */ -#ifndef SHOWS -#define SHOWS std::cerr -#endif #define SHOWP(IF,x) IF(SHOWS<<x;) #define SHOWNL(IF) SHOWP("\n") |