diff options
| author | gingerBill <bill@gingerbill.org> | 2022-01-26 17:34:39 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2022-01-26 17:34:39 +0000 |
| commit | 070b4507686570335cb3624ef1ede6f442bd4866 (patch) | |
| tree | 3bd1c0084b242568e3c67875524ecd1594f76e40 /src/build_settings.cpp | |
| parent | 74174eb4ae796d6c161839d91c301229a1884713 (diff) | |
Add `ODIN_ERROR_POS_STYLE` constant and change `runtime.print_caller_location` based on that constant
Diffstat (limited to 'src/build_settings.cpp')
| -rw-r--r-- | src/build_settings.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/build_settings.cpp b/src/build_settings.cpp index 96339be29..610e4f847 100644 --- a/src/build_settings.cpp +++ b/src/build_settings.cpp @@ -168,6 +168,8 @@ enum TimingsExportFormat : i32 { enum ErrorPosStyle { ErrorPosStyle_Default, // path(line:column) msg ErrorPosStyle_Unix, // path:line:column: msg + + ErrorPosStyle_COUNT }; // This stores the information for the specify architecture of this build |