Include cstdint in lexer.h

Build was failing due to missing `uint32_t` type.
This commit is contained in:
vinnydiehl 2023-05-11 23:55:26 -04:00 committed by t
parent 0b6d61e3f1
commit 9f06dcf9ac

View file

@ -1,6 +1,7 @@
#ifndef INCLUDE_CORE_LEXER_H #ifndef INCLUDE_CORE_LEXER_H
#define INCLUDE_CORE_LEXER_H #define INCLUDE_CORE_LEXER_H
#include <cstdint>
#include <string> #include <string>
#include <vector> #include <vector>