summaryrefslogtreecommitdiff
path: root/Kernel/CommandLine.h
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/CommandLine.h')
-rw-r--r--Kernel/CommandLine.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Kernel/CommandLine.h b/Kernel/CommandLine.h
index 0fe2ef1169..a52e2daa35 100644
--- a/Kernel/CommandLine.h
+++ b/Kernel/CommandLine.h
@@ -44,7 +44,7 @@ enum class AHCIResetMode {
class CommandLine {
public:
- static void early_initialize(const char* cmd_line);
+ static void early_initialize(char const* cmd_line);
static void initialize();
static bool was_initialized();
@@ -96,13 +96,13 @@ public:
private:
CommandLine(StringView);
- void add_arguments(const Vector<StringView>& args);
+ void add_arguments(Vector<StringView> const& args);
static NonnullOwnPtr<KString> build_commandline(StringView cmdline_from_bootloader);
NonnullOwnPtr<KString> m_string;
HashMap<StringView, StringView> m_params;
};
-const CommandLine& kernel_command_line();
+CommandLine const& kernel_command_line();
}