From 11f3897b7aabd9bac4ae91eb0be61565097f5313 Mon Sep 17 00:00:00 2001 From: ala89 Date: Fri, 27 Oct 2023 14:46:32 +0200 Subject: [PATCH] Add global def to tokenize.h --- src/include/tokenize.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/include/tokenize.h b/src/include/tokenize.h index 8934a75..4e42b0f 100644 --- a/src/include/tokenize.h +++ b/src/include/tokenize.h @@ -1,3 +1,6 @@ +#ifndef TOKENIZE_H +#define TOKENIZE_H + #include using namespace std; @@ -12,4 +15,6 @@ union TokenData { struct Token { TokenType type; TokenData data; -}; \ No newline at end of file +}; + +#endif \ No newline at end of file