diff --git a/src/utils/debuglog.h b/src/utils/debuglog.h index 61963a3c..65a60835 100644 --- a/src/utils/debuglog.h +++ b/src/utils/debuglog.h @@ -19,10 +19,7 @@ /* Macros for log and debug messages */ #include -#ifndef NO_NAMESPACES namespace DebugLog { - using std::stack; -#endif // NO_NAMESPACES #ifndef DEBUGLOG_USE_THREADS #define DEBUGLOG_USE_THREADS 1 @@ -44,7 +41,7 @@ namespace DebugLog { class DebugLogWriter; class DebugLog { - stack levels; + std::stack levels; int debuglevel; int dodate; DebugLogWriter *writer; @@ -109,7 +106,5 @@ extern int setfilename(const char *fname, int trnc = 1); #else #define LOGDEB3(X) #endif -#ifndef NO_NAMESPACES } -#endif // NO_NAMESPACES #endif /* _DEBUGLOG_H_ */