Skip to content

Commit

Permalink
Fix gcc build
Browse files Browse the repository at this point in the history
  • Loading branch information
MikePopoloski committed Mar 9, 2024
1 parent c538f87 commit fce11b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/parsing/NumberParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ static logic_t getLogicCharValue(char c) {

NumberParser::NumberParser(Diagnostics& diagnostics, BumpAllocator& alloc,
LanguageVersion languageVersion) :
diagnostics(diagnostics),
alloc(alloc), languageVersion(languageVersion) {
languageVersion(languageVersion),
diagnostics(diagnostics), alloc(alloc) {
}

void NumberParser::startVector(Token baseToken, Token sizeToken) {
Expand Down

0 comments on commit fce11b4

Please sign in to comment.