Removing unused table, Uninitialized scalar field (UNINIT_CTOR),

Coverity CID 751302
This commit is contained in:
DennisOSRM 2013-01-11 20:44:35 +01:00
parent f7d79209dc
commit 845c73af73

View File

@ -27,7 +27,6 @@
class CRC32 { class CRC32 {
private: private:
unsigned crc; unsigned crc;
unsigned slowcrc_table[1<<8];
typedef boost::crc_optimal<32, 0x1EDC6F41, 0x0, 0x0, true, true> my_crc_32_type; typedef boost::crc_optimal<32, 0x1EDC6F41, 0x0, 0x0, true, true> my_crc_32_type;
typedef unsigned (CRC32::*CRC32CFunctionPtr)(char *str, unsigned len, unsigned crc); typedef unsigned (CRC32::*CRC32CFunctionPtr)(char *str, unsigned len, unsigned crc);