Add global def to tokenize.h

This commit is contained in:
ala89 2023-10-27 14:46:32 +02:00
parent f6fe76d40e
commit 11f3897b7a

View File

@ -1,3 +1,6 @@
#ifndef TOKENIZE_H
#define TOKENIZE_H
#include <vector>
using namespace std;
@ -12,4 +15,6 @@ union TokenData {
struct Token {
TokenType type;
TokenData data;
};
};
#endif