utils: Add <cstdint> (#968)

utils uses `uint64_t` without including `<cstdint>`
which fails to build w/ GCC 15 after a change in libstdc++ [0]

[0] https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=3a817a4a5a6d94da9127af3be9f84a74e3076ee2
This commit is contained in:
Sam James 2024-10-03 01:36:02 +01:00 committed by GitHub
parent e5e101253a
commit ddbe41300f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,6 +6,7 @@
#include <optional>
#include <string_view>
#include <cstdint>
#include <iterator>
#include <memory>
#include <string>