summaryrefslogtreecommitdiffstats
path: root/Source/cmFindProgramCommand.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2006-04-14 03:24:09 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2006-04-14 03:24:09 (GMT)
commit1871a74153c5a8ff7fdb10ddb8438b14ae4aee0a (patch)
treec53b35ad34e9ae336bb641282c8e6aee62314784 /Source/cmFindProgramCommand.cxx
parent96a46bdb441226cdc89b1dd65cc65bf4ff771bac (diff)
downloadCMake-1871a74153c5a8ff7fdb10ddb8438b14ae4aee0a.zip
CMake-1871a74153c5a8ff7fdb10ddb8438b14ae4aee0a.tar.gz
CMake-1871a74153c5a8ff7fdb10ddb8438b14ae4aee0a.tar.bz2
ENH: fix warning
Diffstat (limited to 'Source/cmFindProgramCommand.cxx')
-rw-r--r--Source/cmFindProgramCommand.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmFindProgramCommand.cxx b/Source/cmFindProgramCommand.cxx
index 5e750bb..2e94801 100644
--- a/Source/cmFindProgramCommand.cxx
+++ b/Source/cmFindProgramCommand.cxx
@@ -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.