Browse Source

ENH: fix warning

Bill Hoffman 19 năm trước cách đây
mục cha
commit
1871a74153
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      Source/cmFindProgramCommand.cxx

+ 1 - 1
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.