summaryrefslogtreecommitdiffstats
path: root/Source/cmakemain.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2002-11-15 12:42:00 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2002-11-15 12:42:00 (GMT)
commita96940d7b2d3e89cc01312e7a650c6955cf59c97 (patch)
treec4d95fef725ac79ffa777229904c2f4e5e6cf4da /Source/cmakemain.cxx
parentc91ca248f6b0cb9a1eebf47dce9a56e51e40b1db (diff)
downloadCMake-a96940d7b2d3e89cc01312e7a650c6955cf59c97.zip
CMake-a96940d7b2d3e89cc01312e7a650c6955cf59c97.tar.gz
CMake-a96940d7b2d3e89cc01312e7a650c6955cf59c97.tar.bz2
Oops, std namespace
Diffstat (limited to 'Source/cmakemain.cxx')
-rw-r--r--Source/cmakemain.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmakemain.cxx b/Source/cmakemain.cxx
index 71c0dea..2781f0b 100644
--- a/Source/cmakemain.cxx
+++ b/Source/cmakemain.cxx
@@ -77,6 +77,6 @@ void updateProgress(const char *msg, float prog, void*)
{
if ( prog < 0 )
{
- cout << "-- " << msg << endl;
+ std::cout << "-- " << msg << std::endl;
}
}