Skip to content

Commit 7398feb

Browse files
committed
fix include problem
1 parent 25b214b commit 7398feb

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

include/LuaParser/Lexer/LuaLexer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class LuaLexer
3131

3232
std::vector<LuaToken>& GetTokens();
3333

34-
34+
3535
// void SetCustomParser(std::shared_ptr<LuaCustomParser> parser);
3636
private:
3737
static std::map<std::string, LuaTokenKind, std::less<>> LuaReserved;

include/LuaParser/Parse/Mark.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#pragma once
22

33
#include <vector>
4+
#include <string>
45
#include "LuaParser/Ast/LuaSyntaxNodeKind.h"
56
#include "LuaParser/Lexer/LuaTokenKind.h"
67
#include "LuaParseError.h"

0 commit comments

Comments
 (0)