From 1812ca8e9818ee44b4d375b14495a039c020256b Mon Sep 17 00:00:00 2001 From: Aleksey Gurtovoy Date: Sun, 1 Aug 2004 06:27:56 +0000 Subject: [PATCH] MSVC 6.5+STLPort workaround [SVN r24218] --- test/test.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test.h b/test/test.h index 9c411d1..ee21e0a 100644 --- a/test/test.h +++ b/test/test.h @@ -22,8 +22,10 @@ #include +#if !defined(_STLP_MSVC) || _STLP_MSVC >= 1300 namespace std { } using namespace std; +#endif int main(void) { printf("pass " __TIME__);