summaryrefslogtreecommitdiff
path: root/src/wat-lexer.h
diff options
context:
space:
mode:
authorrathann <dominik@greysector.net>2023-01-26 18:34:50 +0100
committerGitHub <noreply@github.com>2023-01-26 09:34:50 -0800
commit07362b354b42b3c8cda2eff58fcaa9e74a2b2d18 (patch)
treee8b67a6346b6dbd6a108535d9532f8a0fa348414 /src/wat-lexer.h
parentb5476c6378e10350bf17080fae9bfd8ceeb83cd2 (diff)
downloadbinaryen-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.h1
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>