From 065f23ba3869c32801d626bbff6c69dafc807f10 Mon Sep 17 00:00:00 2001 From: Brad King Date: Thu, 31 Jan 2008 08:32:08 -0500 Subject: [PATCH] STYLE: Work-around std:: check since this is a platform test. --- Source/kwsys/kwsysPlatformTestsCXX.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/kwsys/kwsysPlatformTestsCXX.cxx b/Source/kwsys/kwsysPlatformTestsCXX.cxx index 93d7d22dd..f0a2dfccb 100644 --- a/Source/kwsys/kwsysPlatformTestsCXX.cxx +++ b/Source/kwsys/kwsysPlatformTestsCXX.cxx @@ -29,7 +29,7 @@ #ifdef TEST_KWSYS_STL_HAVE_STD #include -void f(std::list*) {} +void f(std ::list*) {} int main() { return 0; } #endif @@ -40,7 +40,7 @@ int main() { return 0; } #ifdef TEST_KWSYS_IOS_HAVE_STD #include -void f(std::ostream*) {} +void f(std ::ostream*) {} int main() { return 0; } #endif @@ -50,8 +50,8 @@ int main() { return 0; } # error "GCC 2.96 stringstream is buggy" #endif int main() -{ - std::ostringstream ostr; +{ + std ::ostringstream ostr; ostr << "hello"; if(ostr.str().size() == 5) {