Browse Source

COMP: patch from Mathieu: fix warning about unused variables in bootstrap
mode

Alex

Alexander Neundorf 18 years ago
parent
commit
f13c3eef83
1 changed files with 3 additions and 1 deletions
  1. 3 1
      Source/cmSystemTools.cxx

+ 3 - 1
Source/cmSystemTools.cxx

@@ -1091,7 +1091,9 @@ bool cmSystemTools::ComputeFileMD5(const char* source, char* md5out)
 
   fin.close();
   return true;
-#else  
+#else
+  (void)source;
+  (void)md5out;
   cmSystemTools::Message("md5sum not supported in bootstrapping mode","Error");
   return false;
 #endif