summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;