diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2005-04-06 13:47:07 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2005-04-06 13:47:07 (GMT) |
commit | 1e6989017dc1bcd9bfbc83653bd95549cbf2bd47 (patch) | |
tree | 920f155cbb504c9f3e774053f1acb08eafe53379 /Source | |
parent | d8f75badb400d5e75a26bb6cf1198d3dd73a1561 (diff) | |
download | CMake-1e6989017dc1bcd9bfbc83653bd95549cbf2bd47.zip CMake-1e6989017dc1bcd9bfbc83653bd95549cbf2bd47.tar.gz CMake-1e6989017dc1bcd9bfbc83653bd95549cbf2bd47.tar.bz2 |
remove cerr stuff
Diffstat (limited to 'Source')
-rw-r--r-- | Source/kwsys/SystemTools.cxx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Source/kwsys/SystemTools.cxx b/Source/kwsys/SystemTools.cxx index ee946db..c40d4c5 100644 --- a/Source/kwsys/SystemTools.cxx +++ b/Source/kwsys/SystemTools.cxx @@ -1972,7 +1972,6 @@ kwsys_stl::string SystemTools::GetCurrentWorkingDirectory() { char buf[2048]; const char* cwd = Getcwd(buf, 2048); - std::cerr << cwd << "\n"; kwsys_stl::string path; if ( cwd ) { @@ -2181,9 +2180,6 @@ SystemToolsAppendComponents( kwsys_stl::string SystemTools::CollapseFullPath(const char* in_path, const char* in_base) { - if(in_path) std::cerr << "CollapseFullPath inpath: " << in_path << "\n"; - if(in_base) std::cerr << "CollapseFullPath inbase: " << in_base << "\n"; - // Collect the output path components. kwsys_stl::vector<kwsys_stl::string> out_components; @@ -2191,7 +2187,6 @@ kwsys_stl::string SystemTools::CollapseFullPath(const char* in_path, kwsys_stl::vector<kwsys_stl::string> path_components; SystemTools::SplitPath(in_path, path_components); - std::cerr << path_components.size() << "\n"; // If the input path is relative, start with a base path. if(path_components[0].length() == 0) { @@ -2233,7 +2228,6 @@ kwsys_stl::string SystemTools::CollapseFullPath(const char* in_path, // Update the translation table with this potentially new path. SystemTools::AddTranslationPath(newPath.c_str(), in_path); SystemTools::CheckTranslationPath(newPath); - std::cerr << "NewPath : " << newPath << "\n"; // Return the reconstructed path. return newPath; } |