diff options
author | Bill Lorensen <lorensen@crd.ge.com> | 2001-02-27 17:00:03 (GMT) |
---|---|---|
committer | Bill Lorensen <lorensen@crd.ge.com> | 2001-02-27 17:00:03 (GMT) |
commit | 79b7d8a1129a9632c6d10f41d757efbd673f417f (patch) | |
tree | 8fc5cf514b3844731b27eebd25315fbada721a20 | |
parent | 0093fc02a2c98e0df279efa04d29f7e979371f06 (diff) | |
download | CMake-79b7d8a1129a9632c6d10f41d757efbd673f417f.zip CMake-79b7d8a1129a9632c6d10f41d757efbd673f417f.tar.gz CMake-79b7d8a1129a9632c6d10f41d757efbd673f417f.tar.bz2 |
ERR: missing std:: on cout.
-rw-r--r-- | Source/CMakeBuildTargets.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CMakeBuildTargets.cxx b/Source/CMakeBuildTargets.cxx index 8b6adba..85e4d38 100644 --- a/Source/CMakeBuildTargets.cxx +++ b/Source/CMakeBuildTargets.cxx @@ -107,7 +107,7 @@ int main(int ac, char** av) cmCacheManager::GetInstance()->SaveCache(&mf); if(makeCache) { - cmCacheManager::GetInstance()->PrintCache(cout); + cmCacheManager::GetInstance()->PrintCache(std::cout); } if(cmSystemTools::GetErrorOccuredFlag()) |