Skip to content

Commit

Permalink
Merge pull request #4255 from OfekShilon/CppOpFix
Browse files Browse the repository at this point in the history
Remove 2 java-only operators from c++ tokenizer
  • Loading branch information
hediet authored Dec 14, 2023
2 parents 72dcedb + d38b385 commit e1a0606
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/basic-languages/cpp/cpp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,6 @@ export const language = <languages.IMonarchLanguage>{
'%',
'<<',
'>>',
'>>>',
'+=',
'-=',
'*=',
Expand All @@ -269,8 +268,7 @@ export const language = <languages.IMonarchLanguage>{
'^=',
'%=',
'<<=',
'>>=',
'>>>='
'>>='
],

// we include these common regular expressions
Expand Down

0 comments on commit e1a0606

Please sign in to comment.