Explorar el Código

ENH: fix warning

Bill Hoffman hace 19 años
padre
commit
1871a74153
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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.