COMP: Remove shadow variable warning

This commit is contained in:
Andy Cedilnik
2005-12-30 13:22:10 -05:00
parent 081625c610
commit 2804a0d7db
2 changed files with 11 additions and 10 deletions

View File

@@ -113,9 +113,10 @@ cmStdString cmFindFileCommand::FindHeaderInFrameworks(
const char* defineVar,
const char* file)
{
(void)defineVar;
#ifndef __APPLE__
(void)path;
(void)defineVar;
(void)file;
return cmStdString("");
#else
@@ -150,11 +151,11 @@ cmStdString cmFindFileCommand::FindHeaderInFrameworks(
fpath += "/";
fpath += frameWorkName;
fpath += ".framework";
std::string path = fpath;
path += "/Headers/";
path += fileName;
std::cerr << "try " << path << "\n";
if(cmSystemTools::FileExists(path.c_str()))
std::string intPath = fpath;
intPath += "/Headers/";
intPath += fileName;
std::cerr << "try " << intPath << "\n";
if(cmSystemTools::FileExists(intPath.c_str()))
{
return fpath;
}