summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGUI/GMLLexer.cpp
diff options
context:
space:
mode:
authorMax Wipfli <mail@maxwipfli.ch>2021-06-04 00:01:16 +0200
committerAli Mohammad Pur <Ali.mpfard@gmail.com>2021-06-05 00:32:28 +0430
commite10278402f3965e2c3caaebe752c3758ecddd2a4 (patch)
treedb5ec6fd88e7d52a110f65c3576010fdc1a10282 /Userland/Libraries/LibGUI/GMLLexer.cpp
parent106ad6ba0945612ddbf19774da0fee1f78ee542e (diff)
downloadserenity-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.cpp2
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)
{
}