summaryrefslogtreecommitdiffstats
path: root/Source/cmSystemTools.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2009-11-03 21:50:49 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2009-11-03 21:50:49 (GMT)
commit5f41fe03ca0abfe43e386426ce942414d8602706 (patch)
treedeed3c4a4026f88db0bc45c25725d85d5439639d /Source/cmSystemTools.cxx
parent85912a37772b9ceea1ef3b22b0ed9d1c94e9f5b4 (diff)
downloadCMake-5f41fe03ca0abfe43e386426ce942414d8602706.zip
CMake-5f41fe03ca0abfe43e386426ce942414d8602706.tar.gz
CMake-5f41fe03ca0abfe43e386426ce942414d8602706.tar.bz2
Fix warnings for unused variables
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r--Source/cmSystemTools.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx
index d593d7e..b487c5c 100644
--- a/Source/cmSystemTools.cxx
+++ b/Source/cmSystemTools.cxx
@@ -2051,7 +2051,7 @@ bool cmSystemTools::ExtractTar(const char* outFileName,
}
bool cmSystemTools::ListTar(const char* outFileName,
- std::vector<cmStdString>& files, bool gzip,
+ std::vector<cmStdString>& files, bool ,
bool verbose)
{
#if defined(CMAKE_BUILD_WITH_CMAKE)
@@ -2059,7 +2059,6 @@ bool cmSystemTools::ListTar(const char* outFileName,
#else
(void)outFileName;
(void)files;
- (void)gzip;
(void)verbose;
return false;
#endif