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:
parent
953e01a604
commit
e328ee73c8
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue