diff options
author | Brad King <brad.king@kitware.com> | 2002-10-11 12:36:20 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2002-10-11 12:36:20 (GMT) |
commit | 98ae74ce7476146c50427a4e0765f49f33825d62 (patch) | |
tree | b692dcc656bd3713b0872d4562d100c4f67578aa /Source/cmStandardIncludes.h | |
parent | 5b9feb6fdc32488e0f3fece5df9633981e11b06a (diff) | |
download | CMake-98ae74ce7476146c50427a4e0765f49f33825d62.zip CMake-98ae74ce7476146c50427a4e0765f49f33825d62.tar.gz CMake-98ae74ce7476146c50427a4e0765f49f33825d62.tar.bz2 |
ERR: istrstream and istringstream need to be pulled into namespace std on the SGI.
Diffstat (limited to 'Source/cmStandardIncludes.h')
-rw-r--r-- | Source/cmStandardIncludes.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmStandardIncludes.h b/Source/cmStandardIncludes.h index d72bb9c..5094b36 100644 --- a/Source/cmStandardIncludes.h +++ b/Source/cmStandardIncludes.h @@ -122,8 +122,10 @@ using ::ofstream; #if !defined(CMAKE_NO_ANSI_STRING_STREAM) using ::ostringstream; + using ::istringstream; #else using ::ostrstream; + using ::istrstream; #endif using ::endl; |