diff options
author | Brad King <brad.king@kitware.com> | 2002-10-10 14:43:59 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2002-10-10 14:43:59 (GMT) |
commit | 281f7519e1707bd30ce8f9368b7515396f713af9 (patch) | |
tree | 560dd62bf62c26753d47b870c405677bb30eceb0 /Source/cmake.cxx | |
parent | 65cc289047fc2a4b444838c690d9bd45eca04f7e (diff) | |
download | CMake-281f7519e1707bd30ce8f9368b7515396f713af9.zip CMake-281f7519e1707bd30ce8f9368b7515396f713af9.tar.gz CMake-281f7519e1707bd30ce8f9368b7515396f713af9.tar.bz2 |
ENH: Renamed cmStringStream to cmOStringStream and added cmIStringStream. Removed cmInputStringStream.
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index db604a7..fd976b9 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -95,7 +95,7 @@ void cmake::AddCommand(cmCommand* wg) void cmake::Usage(const char* program) { - cmStringStream errorStream; + cmOStringStream errorStream; errorStream << "cmake version " << cmMakefile::GetMajorVersion() << "." << cmMakefile::GetMinorVersion() << "\n"; @@ -332,7 +332,7 @@ int cmake::AddCMakePaths(const char *arg0) if(!cmSystemTools::FileExists(cMakeSelf.c_str())) { failures.push_back(cMakeSelf); - cmStringStream msg; + cmOStringStream msg; msg << "CMAKE can not find the command line program cmake.\n"; msg << " argv[0] = \"" << arg0 << "\"\n"; msg << " Attempted paths:\n"; @@ -444,7 +444,7 @@ int cmake::AddCMakePaths(const char *arg0) void CMakeCommandUsage(const char* program) { - cmStringStream errorStream; + cmOStringStream errorStream; errorStream << "cmake version " << cmMakefile::GetMajorVersion() |