diff options
Diffstat (limited to 'sca-cpp/trunk/kernel/stream.hpp')
-rw-r--r-- | sca-cpp/trunk/kernel/stream.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sca-cpp/trunk/kernel/stream.hpp b/sca-cpp/trunk/kernel/stream.hpp index f3efb13479..32b754f315 100644 --- a/sca-cpp/trunk/kernel/stream.hpp +++ b/sca-cpp/trunk/kernel/stream.hpp @@ -27,7 +27,7 @@ */ #include <stdarg.h> -#include "debug.hpp" +#include "config.hpp" #include "gc.hpp" #include "string.hpp" @@ -152,7 +152,7 @@ template<typename T> ostream& operator<<(ostream& out, const gc_ptr<T>& p) { return out << p.ptr; } -#ifdef _DEBUG +#ifdef WANT_MAINTAINER_MODE /** * Debug stream implementation with no dependencies on anything else. |