1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 14:47:46 +00:00

LibCpp: Use east const style in Lexer and SyntaxHighlighter

This commit is contained in:
Max Wipfli 2021-06-03 23:17:34 +02:00 committed by Ali Mohammad Pur
parent 282a623853
commit d57d7bea1c
4 changed files with 9 additions and 9 deletions

View file

@ -14,7 +14,7 @@ namespace Cpp {
class Lexer {
public:
Lexer(const StringView&);
Lexer(StringView const&);
Vector<Token> lex();