diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-08-22 13:20:44 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-08-22 13:20:44 (GMT) |
commit | 377e4c132f4febeddc1b899fb032276ef0303bcb (patch) | |
tree | d652dfc568d3f528a4344bb6d3f39f48fb5ebab8 /Source/CPack | |
parent | 4f784e3024aaeed31b75c90066cd113934ffe7fb (diff) | |
download | CMake-377e4c132f4febeddc1b899fb032276ef0303bcb.zip CMake-377e4c132f4febeddc1b899fb032276ef0303bcb.tar.gz CMake-377e4c132f4febeddc1b899fb032276ef0303bcb.tar.bz2 |
COMP: Remove warnings
Diffstat (limited to 'Source/CPack')
-rw-r--r-- | Source/CPack/cmCPackTarCompressGenerator.cxx | 12 |
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 { |