ENH: remove warnings and debug statement

This commit is contained in:
Bill Hoffman 2007-02-17 08:38:41 -05:00
parent fad49c8724
commit 66523061d0
2 changed files with 2 additions and 6 deletions

View File

@ -130,14 +130,10 @@ void cmGlobalXCodeGenerator::EnableLanguage(std::vector<std::string>const&
mf->GetDefinition("CMAKE_OSX_SYSROOT"); mf->GetDefinition("CMAKE_OSX_SYSROOT");
if(osxArch && sysroot) if(osxArch && sysroot)
{ {
std::cerr <<"EnableLanguage archs\n";
this->Architectures.clear(); this->Architectures.clear();
cmSystemTools::ExpandListArgument(std::string(osxArch), cmSystemTools::ExpandListArgument(std::string(osxArch),
this->Architectures); this->Architectures);
} }
else
std::cerr <<"no EnableLanguage archs\n";
} }
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------

View File

@ -2400,9 +2400,9 @@ std::string cmLocalGenerator::EscapeForShell(const char* str, bool makeVars,
return std::string(&arg[0]); return std::string(&arg[0]);
} }
void void
cmLocalGenerator::GetTargetObjectFileDirectories(cmTarget* target, cmLocalGenerator::GetTargetObjectFileDirectories(cmTarget* ,
std::vector<std::string>& std::vector<std::string>&
dirs) )
{ {
cmSystemTools::Error("GetTargetObjectFileDirectories called on cmLocalGenerator"); cmSystemTools::Error("GetTargetObjectFileDirectories called on cmLocalGenerator");
} }