From: Alex Rousskov Date: Tue, 17 Aug 2021 17:47:11 +0000 (-0400) Subject: fixup: No explicit destructors with implicit copying methods X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f49d009;p=thirdparty%2Fsquid.git fixup: No explicit destructors with implicit copying methods --- diff --git a/src/eui/Eui48.h b/src/eui/Eui48.h index b0df46f30f..837186160d 100644 --- a/src/eui/Eui48.h +++ b/src/eui/Eui48.h @@ -31,7 +31,6 @@ public: Eui48() { clear(); } bool operator== (const Eui48 &t) const { return memcmp(eui, t.eui, SZ_EUI48_BUF) == 0; } bool operator< (const Eui48 &t) const { return memcmp(eui, t.eui, SZ_EUI48_BUF) < 0; } - ~Eui48() {} const unsigned char *get(void);