COMP: patch from Mathieu: fix warning about unused variables in bootstrap
mode Alex
This commit is contained in:
parent
eff7981b57
commit
f13c3eef83
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue