diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-11-15 12:42:00 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-11-15 12:42:00 (GMT) |
commit | a96940d7b2d3e89cc01312e7a650c6955cf59c97 (patch) | |
tree | c4d95fef725ac79ffa777229904c2f4e5e6cf4da /Source/cmakemain.cxx | |
parent | c91ca248f6b0cb9a1eebf47dce9a56e51e40b1db (diff) | |
download | CMake-a96940d7b2d3e89cc01312e7a650c6955cf59c97.zip CMake-a96940d7b2d3e89cc01312e7a650c6955cf59c97.tar.gz CMake-a96940d7b2d3e89cc01312e7a650c6955cf59c97.tar.bz2 |
Oops, std namespace
Diffstat (limited to 'Source/cmakemain.cxx')
-rw-r--r-- | Source/cmakemain.cxx | 2 |
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; } } |