summaryrefslogtreecommitdiff
path: root/Source/cmWriteFileCommand.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2002-09-21 07:29:39 -0400
committerAndy Cedilnik <andy.cedilnik@kitware.com>2002-09-21 07:29:39 -0400
commita77f9f0715f0c3e73f480e2f0eb011648acd9458 (patch)
treea795a8ed13c8352b4b9d38f37bf1ab5c94d9f76f /Source/cmWriteFileCommand.cxx
parenta76773f48f91faef0c5ddb8439e6104895eee54a (diff)
downloadcmake-a77f9f0715f0c3e73f480e2f0eb011648acd9458.tar.gz
Fix namespace problem
Diffstat (limited to 'Source/cmWriteFileCommand.cxx')
-rw-r--r--Source/cmWriteFileCommand.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmWriteFileCommand.cxx b/Source/cmWriteFileCommand.cxx
index 04fc5799e9..9a37850468 100644
--- a/Source/cmWriteFileCommand.cxx
+++ b/Source/cmWriteFileCommand.cxx
@@ -46,7 +46,7 @@ bool cmWriteFileCommand::InitialPass(std::vector<std::string> const& argsIn)
fileName.c_str());
return false;
}
- file << message << endl;
+ file << message << std::endl;
file.close();
return true;