Skip to content

Commit

Permalink
Remove trailing comma in project creation.
Browse files Browse the repository at this point in the history
  • Loading branch information
lerno committed Jan 8, 2025
1 parent dad97fc commit 9412b58
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/build/project_creation.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const char* JSON_EXE =
" // CPU name, used for optimizations in the LLVM backend.\n"
" \"cpu\": \"generic\",\n"
" // Optimization: \"O0\", \"O1\", \"O2\", \"O3\", \"O4\", \"O5\", \"Os\", \"Oz\".\n"
" \"opt\": \"O0\",\n"
" \"opt\": \"O0\"\n"
" // See resources/examples/project_all_settings.json and 'c3c --list-project-properties' to see more properties.\n"
"}";

Expand Down Expand Up @@ -88,7 +88,7 @@ const char* JSON_STATIC =
" },\n"
" // Global settings.\n"
" // Optimization: \"O0\", \"O1\", \"O2\", \"O3\", \"O4\", \"O5\", \"Os\", \"Oz\".\n"
" \"opt\": \"O0\",\n"
" \"opt\": \"O0\"\n"
" // See resources/examples/project_all_settings.json and 'c3c --list-project-properties' to see more properties.\n"
"}";

Expand Down Expand Up @@ -131,7 +131,7 @@ const char* JSON_DYNAMIC =
" },\n"
" // Global settings.\n"
" // Optimization: \"O0\", \"O1\", \"O2\", \"O3\", \"O4\", \"O5\", \"Os\", \"Oz\".\n"
" \"opt\": \"O0\",\n"
" \"opt\": \"O0\"\n"
" // See resources/examples/project_all_settings.json and 'c3c --list-project-properties' to see more properties.\n"
"}";

Expand Down

0 comments on commit 9412b58

Please sign in to comment.