mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 23:07:35 +00:00
Everywhere: Run clang-format
This commit is contained in:
parent
0376c127f6
commit
086969277e
1665 changed files with 8479 additions and 8479 deletions
|
@ -15,7 +15,7 @@
|
|||
#include <LibMain/Main.h>
|
||||
#include <unistd.h>
|
||||
|
||||
static void print(const JsonValue& value, int spaces_per_indent, int indent = 0, bool use_color = true);
|
||||
static void print(JsonValue const& value, int spaces_per_indent, int indent = 0, bool use_color = true);
|
||||
static void print_indent(int indent, int spaces_per_indent)
|
||||
{
|
||||
for (int i = 0; i < indent * spaces_per_indent; ++i)
|
||||
|
@ -53,7 +53,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|||
return 0;
|
||||
}
|
||||
|
||||
void print(const JsonValue& value, int spaces_per_indent, int indent, bool use_color)
|
||||
void print(JsonValue const& value, int spaces_per_indent, int indent, bool use_color)
|
||||
{
|
||||
if (value.is_object()) {
|
||||
size_t printed_members = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue