1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:37:35 +00:00

Everywhere: Run clang-format

This commit is contained in:
Idan Horowitz 2022-04-01 20:58:27 +03:00 committed by Linus Groh
parent 0376c127f6
commit 086969277e
1665 changed files with 8479 additions and 8479 deletions

View file

@ -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();
}