From b61f0b40285922ea631e8015c016872faad58e46 Mon Sep 17 00:00:00 2001 From: Jean-Francois Dockes Date: Sat, 28 Jul 2012 09:11:32 +0200 Subject: [PATCH] none --- src/utils/debuglog.h | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) 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_ */