Further cleanup

This commit is contained in:
DennisOSRM
2012-04-25 10:57:19 +02:00
parent f8761ecea0
commit 7e47553c88
6 changed files with 4 additions and 18 deletions
-6
View File
@@ -83,9 +83,3 @@ unsigned CRC32::operator()(char *str, unsigned len){
crc =((*this).*(crcFunction))(str, len, crc);
return crc;
}
CRC32::~CRC32() {
// TODO Auto-generated destructor stub
}
+1 -1
View File
@@ -40,7 +40,7 @@ private:
public:
CRC32();
unsigned operator()(char *str, unsigned len);
virtual ~CRC32();
virtual ~CRC32() {};
};
#endif /* CRC32_H_ */