ENH: fix warning

This commit is contained in:
Bill Hoffman 2006-04-13 23:24:09 -04:00
parent 96a46bdb44
commit 1871a74153
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ std::string cmFindProgramCommand::FindAppBundle(std::vector<std::string> names)
std::string cmFindProgramCommand::GetBundleExecutable(std::string bundlePath)
{
std::string executable = "";
(void)bundlePath;
#if defined(__APPLE__)
// Started with an example on developer.apple.com about finding bundles
// and modified from that.