Browse Source

ERR: istrstream and istringstream need to be pulled into namespace std on the SGI.

Brad King 23 years ago
parent
commit
98ae74ce74
1 changed files with 2 additions and 0 deletions
  1. 2 0
      Source/cmStandardIncludes.h

+ 2 - 0
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;