diff options
author | 2024-02-26 08:13:25 -0500 | |
---|---|---|
committer | 2024-02-26 08:14:15 -0500 | |
commit | 3e4ed5d6fe49037b39c5c13e611ba17fc3d4bc05 (patch) | |
tree | 4185f48f0eacaad71d55ad776f415652c5939cfd /src/lib/util/coreutil.cpp | |
parent | 114300659fb04ba789b18126ff2235d9dc2aa91a (diff) |
coreutil.h: Eliminate core_crc32 wrapper function in favor of util::crc32_creator
Diffstat (limited to 'src/lib/util/coreutil.cpp')
-rw-r--r-- | src/lib/util/coreutil.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/lib/util/coreutil.cpp b/src/lib/util/coreutil.cpp index 94ec6dec273..cebbceb037e 100644 --- a/src/lib/util/coreutil.cpp +++ b/src/lib/util/coreutil.cpp @@ -10,7 +10,6 @@ #include "coreutil.h" #include <cassert> -#include <zlib.h> /*************************************************************************** @@ -55,14 +54,3 @@ uint32_t bcd_2_dec(uint32_t a) } return result; } - - - -/*************************************************************************** - MISC -***************************************************************************/ - -uint32_t core_crc32(uint32_t crc, const uint8_t *buf, uint32_t len) -{ - return crc32(crc, buf, len); -} |