From c98d15e8a3bc0ff8a4dcbe20ab3dfd12ed263504 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Mon, 3 Apr 2006 15:59:43 -0400 Subject: [PATCH] ENH: fix warning, and remove debug code --- Source/cmFileCommand.cxx | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx index 408eec067d..416ac66ab3 100644 --- a/Source/cmFileCommand.cxx +++ b/Source/cmFileCommand.cxx @@ -975,20 +975,12 @@ bool cmFileCommand::HandleSystemPathCommand(std::vector const& args) { std::vector::const_iterator i = args.begin(); - for(std::vector::const_iterator j = args.begin(); - j != args.end(); ++j) - { - std::cerr << "[" << *j << "]\n"; - } - return true; if(args.size() != 3) { this->SetError("FILE(SYSTEM_PATH ENV result) must be called with " "only three arguments."); return false; } - - i++; // Get rid of subcommand std::vector path; cmSystemTools::GetPath(path, i->c_str());