summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2004-01-26 00:30:24 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2004-01-26 00:30:24 (GMT)
commit7608d3f58665179773826510032024b7e70ee00f (patch)
tree4e5f7db974f14fd5571f2d6dd623c12e82800e0c
parent797db2bd822555dc4d355def1233d1503f90fe61 (diff)
downloadCMake-7608d3f58665179773826510032024b7e70ee00f.zip
CMake-7608d3f58665179773826510032024b7e70ee00f.tar.gz
CMake-7608d3f58665179773826510032024b7e70ee00f.tar.bz2
ERR: Fix std:: namespace
-rw-r--r--Source/cmLocalGenerator.cxx2
-rw-r--r--Source/cmLocalGenerator.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx
index add2900..e42520c 100644
--- a/Source/cmLocalGenerator.cxx
+++ b/Source/cmLocalGenerator.cxx
@@ -210,7 +210,7 @@ void cmLocalGenerator::GenerateInstallRules()
}
}
-void cmLocalGenerator::AddInstallRule(ostream& fout, const char* dest, int type, const char* files)
+void cmLocalGenerator::AddInstallRule(std::ostream& fout, const char* dest, int type, const char* files)
{
std::string sfiles = files;
std::string destination = cmSystemTools::ConvertToOutputPath(dest);
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h
index 2d849f9..e773568 100644
--- a/Source/cmLocalGenerator.h
+++ b/Source/cmLocalGenerator.h
@@ -79,7 +79,7 @@ public:
std::string ConvertToRelativeOutputPath(const char* p);
protected:
- virtual void AddInstallRule(ostream& fout, const char* dest, int type, const char* files);
+ virtual void AddInstallRule(std::ostream& fout, const char* dest, int type, const char* files);
bool m_FromTheTop;
cmMakefile *m_Makefile;