fixed class/struct mismatch

This commit is contained in:
Lauchmelder 2021-11-24 14:30:32 +01:00
parent 5d6ed9d504
commit 44a7ea539d

View file

@ -20,9 +20,9 @@ enum ValueType
// some prototypes
struct Token;
class Instruction;
struct Instruction;
struct Keyword;
class Runtime;
struct Runtime;
const std::string resolve_TokenType_str(enum TokenType);
const std::string resolve_ValueType_str(enum ValueType);