From 377e4c132f4febeddc1b899fb032276ef0303bcb Mon Sep 17 00:00:00 2001 From: Andy Cedilnik Date: Tue, 22 Aug 2006 09:20:44 -0400 Subject: [PATCH] COMP: Remove warnings --- Source/CPack/cmCPackTarCompressGenerator.cxx | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/Source/CPack/cmCPackTarCompressGenerator.cxx b/Source/CPack/cmCPackTarCompressGenerator.cxx index caab168d3..85b70cebb 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 {