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> #include <vector>
using namespace std; using namespace std;
@ -13,3 +16,5 @@ struct Token {
TokenType type; TokenType type;
TokenData data; TokenData data;
}; };
#endif