summaryrefslogtreecommitdiffstats
path: root/Source/CPack
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2006-08-22 13:20:44 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2006-08-22 13:20:44 (GMT)
commit377e4c132f4febeddc1b899fb032276ef0303bcb (patch)
treed652dfc568d3f528a4344bb6d3f39f48fb5ebab8 /Source/CPack
parent4f784e3024aaeed31b75c90066cd113934ffe7fb (diff)
downloadCMake-377e4c132f4febeddc1b899fb032276ef0303bcb.zip
CMake-377e4c132f4febeddc1b899fb032276ef0303bcb.tar.gz
CMake-377e4c132f4febeddc1b899fb032276ef0303bcb.tar.bz2
COMP: Remove warnings
Diffstat (limited to 'Source/CPack')
-rw-r--r--Source/CPack/cmCPackTarCompressGenerator.cxx12
1 files changed, 5 insertions, 7 deletions
diff --git a/Source/CPack/cmCPackTarCompressGenerator.cxx b/Source/CPack/cmCPackTarCompressGenerator.cxx
index caab168..85b70ce 100644
--- a/Source/CPack/cmCPackTarCompressGenerator.cxx
+++ b/Source/CPack/cmCPackTarCompressGenerator.cxx
@@ -35,11 +35,11 @@
//----------------------------------------------------------------------
class cmCPackTarCompressGeneratorForward
{
- public:
- static int GenerateHeader(cmCPackTarCompressGenerator* gg, std::ostream* os)
- {
- return gg->GenerateHeader(os);
- }
+public:
+ static int GenerateHeader(cmCPackTarCompressGenerator* gg, std::ostream* os)
+ {
+ return gg->GenerateHeader(os);
+ }
};
//----------------------------------------------------------------------
@@ -52,8 +52,6 @@ cmCPackTarCompressGenerator::~cmCPackTarCompressGenerator()
{
}
-static const size_t cmCPackTarCompress_Data_BlockSize = 16384;
-
//----------------------------------------------------------------------
class cmCPackTarCompress_Data
{