summaryrefslogtreecommitdiff
path: root/Userland/Utilities/cpp-parser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Utilities/cpp-parser.cpp')
-rw-r--r--Userland/Utilities/cpp-parser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Utilities/cpp-parser.cpp b/Userland/Utilities/cpp-parser.cpp
index 65f52242ed..f1aee959c7 100644
--- a/Userland/Utilities/cpp-parser.cpp
+++ b/Userland/Utilities/cpp-parser.cpp
@@ -12,7 +12,7 @@
ErrorOr<int> serenity_main(Main::Arguments arguments)
{
Core::ArgsParser args_parser;
- const char* path = nullptr;
+ char const* path = nullptr;
bool tokens_mode = false;
args_parser.add_option(tokens_mode, "Print Tokens", "tokens", 'T');
args_parser.add_positional_argument(path, "Cpp File", "cpp-file", Core::ArgsParser::Required::No);