diff options
author | David Cole <david.cole@kitware.com> | 2008-06-19 10:17:01 (GMT) |
---|---|---|
committer | David Cole <david.cole@kitware.com> | 2008-06-19 10:17:01 (GMT) |
commit | 01a93bbb3e46242f7ddeb56ce52f1fe539d14296 (patch) | |
tree | 979d78882f122f31ae70b59bc680c05e1da381fb /Source/CPack/cmCPackBundleGenerator.cxx | |
parent | 8c64691bec12a79b9328d41d12cec6bd788c83ee (diff) | |
download | CMake-01a93bbb3e46242f7ddeb56ce52f1fe539d14296.zip CMake-01a93bbb3e46242f7ddeb56ce52f1fe539d14296.tar.gz CMake-01a93bbb3e46242f7ddeb56ce52f1fe539d14296.tar.bz2 |
COMP: Eliminate unreferenced variable warning
Diffstat (limited to 'Source/CPack/cmCPackBundleGenerator.cxx')
-rw-r--r-- | Source/CPack/cmCPackBundleGenerator.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/CPack/cmCPackBundleGenerator.cxx b/Source/CPack/cmCPackBundleGenerator.cxx index df85357..88a295c 100644 --- a/Source/CPack/cmCPackBundleGenerator.cxx +++ b/Source/CPack/cmCPackBundleGenerator.cxx @@ -75,6 +75,8 @@ const char* cmCPackBundleGenerator::GetPackagingInstallPrefix() int cmCPackBundleGenerator::CompressFiles(const char* outFileName, const char* toplevel, const std::vector<std::string>& files) { + (void) files; + // The staging directory contains everything that will end-up inside the // final disk image ... cmOStringStream staging; |