diff options
author | Max Wipfli <mail@maxwipfli.ch> | 2021-06-04 00:01:16 +0200 |
---|---|---|
committer | Ali Mohammad Pur <Ali.mpfard@gmail.com> | 2021-06-05 00:32:28 +0430 |
commit | e10278402f3965e2c3caaebe752c3758ecddd2a4 (patch) | |
tree | db5ec6fd88e7d52a110f65c3576010fdc1a10282 /Userland/Libraries/LibGUI/GMLLexer.cpp | |
parent | 106ad6ba0945612ddbf19774da0fee1f78ee542e (diff) | |
download | serenity-e10278402f3965e2c3caaebe752c3758ecddd2a4.zip |
LibGUI: Use east const style in {INI,GML}Lexer.{cpp,h}
Diffstat (limited to 'Userland/Libraries/LibGUI/GMLLexer.cpp')
-rw-r--r-- | Userland/Libraries/LibGUI/GMLLexer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGUI/GMLLexer.cpp b/Userland/Libraries/LibGUI/GMLLexer.cpp index cf1cc9d12b..1f97e3ac90 100644 --- a/Userland/Libraries/LibGUI/GMLLexer.cpp +++ b/Userland/Libraries/LibGUI/GMLLexer.cpp @@ -10,7 +10,7 @@ namespace GUI { -GMLLexer::GMLLexer(const StringView& input) +GMLLexer::GMLLexer(StringView const& input) : m_input(input) { } |