Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 889d278

Browse files
committed
Fix format.
1 parent edf6b81 commit 889d278

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

runtime/dart_vm.cc

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,15 @@ static const char* kDartLanguageArgs[] = {
5959

6060
static const char* kDartPrecompilationArgs[] = {"--precompilation"};
6161

62-
static const char* kSerialGCArgs[] = {"--concurrent_mark=false",
63-
"--concurrent_sweep=false",
64-
"--compactor_tasks=1",
65-
"--scavenger_tasks=0",
66-
"--marker_tasks=0"};
62+
static const char* kSerialGCArgs[] = {
63+
// clang-format off
64+
"--concurrent_mark=false",
65+
"--concurrent_sweep=false",
66+
"--compactor_tasks=1",
67+
"--scavenger_tasks=0",
68+
"--marker_tasks=0",
69+
// clang-format on
70+
};
6771

6872
FML_ALLOW_UNUSED_TYPE
6973
static const char* kDartWriteProtectCodeArgs[] = {

0 commit comments

Comments
 (0)