diff options
| author | gingerBill <bill@gingerbill.org> | 2023-02-22 11:48:10 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2023-02-22 11:48:10 +0000 |
| commit | 090e30f07b10a79edf38736cc466a4f223167971 (patch) | |
| tree | ce4c3957789661066ef0acee1ca01a0ef1a79f84 /src/build_settings.cpp | |
| parent | f5d507a9b9d20941bd86ba8559f710f21f0c8ccd (diff) | |
Make `-verbose-errors` the default; `-terse-errors` to disable it
Diffstat (limited to 'src/build_settings.cpp')
| -rw-r--r-- | src/build_settings.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/build_settings.cpp b/src/build_settings.cpp index a3873be82..ff372f418 100644 --- a/src/build_settings.cpp +++ b/src/build_settings.cpp @@ -288,7 +288,7 @@ struct BuildContext { bool ignore_warnings; bool warnings_as_errors; - bool show_error_line; + bool hide_error_line; bool ignore_lazy; bool ignore_llvm_build; @@ -1033,7 +1033,7 @@ gb_internal String get_fullpath_core(gbAllocator a, String path) { } gb_internal bool show_error_line(void) { - return build_context.show_error_line; + return !build_context.hide_error_line; } gb_internal bool has_asm_extension(String const &path) { |