summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCpp/Lexer.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibCpp/Lexer.h')
-rw-r--r--Userland/Libraries/LibCpp/Lexer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibCpp/Lexer.h b/Userland/Libraries/LibCpp/Lexer.h
index e3f958ac7e..814de33c46 100644
--- a/Userland/Libraries/LibCpp/Lexer.h
+++ b/Userland/Libraries/LibCpp/Lexer.h
@@ -14,7 +14,7 @@ namespace Cpp {
class Lexer {
public:
- explicit Lexer(StringView const&, size_t start_line = 0);
+ explicit Lexer(StringView, size_t start_line = 0);
Vector<Token> lex();
template<typename Callback>