Include <cstdint> in common/kernel/hashlib.h

The definitions for uint32_t, uint64_t report as undefined when
compiling under GCC13. They were previously found by transitive
includes, but this is not guaranteed to work, and GCC13 forced
the issue.
This commit is contained in:
Thomas W Rodgers 2023-02-18 10:26:01 -08:00
parent 16bcc51ffb
commit 825d646196

View File

@ -14,6 +14,7 @@
#include <algorithm>
#include <array>
#include <cstdint>
#include <stdexcept>
#include <string>
#include <vector>