diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-01-26 00:30:24 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-01-26 00:30:24 (GMT) |
commit | 7608d3f58665179773826510032024b7e70ee00f (patch) | |
tree | 4e5f7db974f14fd5571f2d6dd623c12e82800e0c /Source/cmLocalGenerator.cxx | |
parent | 797db2bd822555dc4d355def1233d1503f90fe61 (diff) | |
download | CMake-7608d3f58665179773826510032024b7e70ee00f.zip CMake-7608d3f58665179773826510032024b7e70ee00f.tar.gz CMake-7608d3f58665179773826510032024b7e70ee00f.tar.bz2 |
ERR: Fix std:: namespace
Diffstat (limited to 'Source/cmLocalGenerator.cxx')
-rw-r--r-- | Source/cmLocalGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 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); |