From 845c73af738ef64a9b3879fb7e4006f1a56d10c6 Mon Sep 17 00:00:00 2001 From: DennisOSRM Date: Fri, 11 Jan 2013 20:44:35 +0100 Subject: [PATCH] Removing unused table, Uninitialized scalar field (UNINIT_CTOR), Coverity CID 751302 --- Algorithms/CRC32.h | 1 - 1 file changed, 1 deletion(-) diff --git a/Algorithms/CRC32.h b/Algorithms/CRC32.h index d84a56808..6321030b7 100644 --- a/Algorithms/CRC32.h +++ b/Algorithms/CRC32.h @@ -27,7 +27,6 @@ class CRC32 { private: unsigned crc; - unsigned slowcrc_table[1<<8]; typedef boost::crc_optimal<32, 0x1EDC6F41, 0x0, 0x0, true, true> my_crc_32_type; typedef unsigned (CRC32::*CRC32CFunctionPtr)(char *str, unsigned len, unsigned crc);