mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
Port all cmOStringStream to std::ostringstream.
All compilers hosting CMake support the std class.
This commit is contained in:
@@ -34,7 +34,7 @@ bool cmConfigureFileCommand
|
||||
// If the input location is a directory, error out.
|
||||
if(cmSystemTools::FileIsDirectory(this->InputFile))
|
||||
{
|
||||
cmOStringStream e;
|
||||
std::ostringstream e;
|
||||
e << "input location\n"
|
||||
<< " " << this->InputFile << "\n"
|
||||
<< "is a directory but a file was expected.";
|
||||
|
||||
Reference in New Issue
Block a user