Просмотр исходного кода

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

Alex

Alexander Neundorf 18 лет назад
Родитель
Сommit
f13c3eef83
1 измененных файлов с 3 добавлено и 1 удалено
  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