summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2007-08-14 14:27:34 (GMT)
committerAlexander Neundorf <neundorf@kde.org>2007-08-14 14:27:34 (GMT)
commitf13c3eef83af130396d6c933afcbac672afe37a3 (patch)
treebdebb29d7f3bd4bd790e6500a9b3d692771fb80b /Source
parenteff7981b5710123fd0ebb8e8c93ab31262429dcb (diff)
downloadCMake-f13c3eef83af130396d6c933afcbac672afe37a3.zip
CMake-f13c3eef83af130396d6c933afcbac672afe37a3.tar.gz
CMake-f13c3eef83af130396d6c933afcbac672afe37a3.tar.bz2
COMP: patch from Mathieu: fix warning about unused variables in bootstrap
mode Alex
Diffstat (limited to 'Source')
-rw-r--r--Source/cmSystemTools.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx
index d736fa2..337e60f 100644
--- a/Source/cmSystemTools.cxx
+++ b/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