fixup: terraform scanner typedef

This commit is contained in:
Christian Clason
2024-06-17 10:01:18 +02:00
parent e2d416afeb
commit 4d4d97dab4

View File

@@ -84,12 +84,12 @@ enum TokenType {
HEREDOC_IDENTIFIER,
};
enum ContextType {
typedef enum ContextType {
TEMPLATE_INTERPOLATION,
TEMPLATE_DIRECTIVE,
QUOTED_TEMPLATE,
HEREDOC_TEMPLATE,
};
} ContextType;
typedef struct {
uint32_t cap;