mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-08-20 21:33:40 -07:00
MacOS fixes.
This commit is contained in:
parent
7246aa0c5f
commit
0efa327a82
1 changed files with 2 additions and 2 deletions
|
@ -56,7 +56,7 @@ static std::string GetCharacterErrorContext(const std::string& input, size_t pos
|
|||
return "\n" + contextLine + "\n" + pointerLine;
|
||||
}
|
||||
|
||||
static bool IsEnumConstant(const std::string& s) {
|
||||
bool IsEnumConstant(const std::string& s) {
|
||||
if (LogicExpression::Impl::enumMap.empty()) {
|
||||
LogicExpression::Impl::PopulateEnumMap();
|
||||
}
|
||||
|
@ -142,7 +142,7 @@ static std::string GetTokenErrorContext(const std::string& input, const Token& t
|
|||
}
|
||||
|
||||
class Parser {
|
||||
const std::vector<Token>& tokens;
|
||||
const std::vector<Token> tokens;
|
||||
const std::string& input;
|
||||
size_t pos = 0;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue