diff options
author | rathann <dominik@greysector.net> | 2023-01-26 18:34:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-26 09:34:50 -0800 |
commit | 07362b354b42b3c8cda2eff58fcaa9e74a2b2d18 (patch) | |
tree | e8b67a6346b6dbd6a108535d9532f8a0fa348414 /src/wat-lexer.h | |
parent | b5476c6378e10350bf17080fae9bfd8ceeb83cd2 (diff) | |
download | binaryen-07362b354b42b3c8cda2eff58fcaa9e74a2b2d18.tar.gz binaryen-07362b354b42b3c8cda2eff58fcaa9e74a2b2d18.tar.bz2 binaryen-07362b354b42b3c8cda2eff58fcaa9e74a2b2d18.zip |
Add explicit include for <cstdint> (#5458)
This fixes the following error when compiling with GCC 13:
"'uint64_t' does not name a type"
Diffstat (limited to 'src/wat-lexer.h')
-rw-r--r-- | src/wat-lexer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wat-lexer.h b/src/wat-lexer.h index d73c11faf..7b6c93552 100644 --- a/src/wat-lexer.h +++ b/src/wat-lexer.h @@ -15,6 +15,7 @@ */ #include <cstddef> +#include <cstdint> #include <cstring> #include <iterator> #include <optional> |