diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-02-06 17:14:03 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-02-06 17:14:03 (GMT) |
commit | 4d119dd7d6be706401dfb9c99eb2dad25bd4a71d (patch) | |
tree | ad80c1cb8dffdf503ef907a3c4463d39f433e8b3 /Source | |
parent | 80f716941e42acee28509d1d0c1529bf589ffbd7 (diff) | |
download | CMake-4d119dd7d6be706401dfb9c99eb2dad25bd4a71d.zip CMake-4d119dd7d6be706401dfb9c99eb2dad25bd4a71d.tar.gz CMake-4d119dd7d6be706401dfb9c99eb2dad25bd4a71d.tar.bz2 |
ENH: add ends at end of string
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmake.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 82eb10e..4020760 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -58,7 +58,7 @@ void cmake::Usage(const char* program) { errorStream << "\"" << i->c_str() << "\" "; } - errorStream << ")\n"; + errorStream << ")\n" << std::ends; cmSystemTools::Error(errorStream.str()); } |