ERR: using declaration to move streams into std namespace needs to bring up ostrstream and ostringstream, not strstream and stringstream.

This commit is contained in:
Brad King 2002-06-21 10:31:37 -04:00
parent 953e01a604
commit e328ee73c8
1 changed files with 2 additions and 2 deletions

View File

@ -108,9 +108,9 @@ using ::ifstream;
using ::ofstream; using ::ofstream;
#if !defined(CMAKE_NO_ANSI_STRING_STREAM) #if !defined(CMAKE_NO_ANSI_STRING_STREAM)
using ::stringstream; using ::ostringstream;
#else #else
using ::strstream; using ::ostrstream;
#endif #endif
using ::endl; using ::endl;