LibCpp: Fix copy paste typo in Parser::match_secondary_expression

This was caught by SonarCloud.
This commit is contained in:
Brian Gianforcaro 2021-11-27 15:17:39 -08:00 committed by Brian Gianforcaro
parent 61e4c09514
commit a225b26d88
Notes: sideshowbarker 2024-07-17 23:23:13 +09:00

View file

@ -377,7 +377,7 @@ bool Parser::match_secondary_expression()
|| type == Token::Type::PercentEquals
|| type == Token::Type::Equals
|| type == Token::Type::Greater
|| type == Token::Type::Greater
|| type == Token::Type::GreaterEquals
|| type == Token::Type::Less
|| type == Token::Type::LessEquals
|| type == Token::Type::Dot