summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalUnixMakefileGenerator2.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2004-10-26 17:00:24 (GMT)
committerBrad King <brad.king@kitware.com>2004-10-26 17:00:24 (GMT)
commit239378e4cb13d43f69fec4f87fedf80d782eb146 (patch)
tree85178cfb91f5cc2c600900bb75d75fd78c32b78d /Source/cmLocalUnixMakefileGenerator2.cxx
parent2a7e2adf7a24e6209e94ec47ecc22b89a37d47f7 (diff)
downloadCMake-239378e4cb13d43f69fec4f87fedf80d782eb146.zip
CMake-239378e4cb13d43f69fec4f87fedf80d782eb146.tar.gz
CMake-239378e4cb13d43f69fec4f87fedf80d782eb146.tar.bz2
ERR: Missing std:: on endl.
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator2.cxx')
-rw-r--r--Source/cmLocalUnixMakefileGenerator2.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator2.cxx b/Source/cmLocalUnixMakefileGenerator2.cxx
index db2fca9..2212c3c 100644
--- a/Source/cmLocalUnixMakefileGenerator2.cxx
+++ b/Source/cmLocalUnixMakefileGenerator2.cxx
@@ -679,18 +679,18 @@ cmLocalUnixMakefileGenerator2
std::string depMakeFile = objFile;
depMakeFile += ".depends.make";
std::ofstream fout(depMakeFile.c_str());
- fout << "# Dependencies for " << objFile << endl;
+ fout << "# Dependencies for " << objFile << std::endl;
for(std::set<cmStdString>::iterator i=dependencies.begin();
i != dependencies.end(); ++i)
{
- fout << objFile << " : " << i->c_str() << endl;
+ fout << objFile << " : " << i->c_str() << std::endl;
}
- fout << endl;
- fout << "# Dependencies for " << objFile << ".depends" << endl;
+ fout << std::endl;
+ fout << "# Dependencies for " << objFile << ".depends" << std::endl;
for(std::set<cmStdString>::iterator i=dependencies.begin();
i != dependencies.end(); ++i)
{
- fout << objFile << ".depends : " << i->c_str() << endl;
+ fout << objFile << ".depends : " << i->c_str() << std::endl;
}
return true;