diff options
| author | gingerBill <bill@gingerbill.org> | 2024-04-11 15:59:22 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2024-04-11 15:59:22 +0100 |
| commit | aab122ede8b04a9877e22c9013c0b020186bc9b4 (patch) | |
| tree | 8349978c625ed8a27b9e40c4041a0b0a007e7edf /src | |
| parent | 503964c7699125e2388762780f7121a704e6e25a (diff) | |
Remove `?`dev-2024-04a
Diffstat (limited to 'src')
| -rw-r--r-- | src/checker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/checker.cpp b/src/checker.cpp index 0d72c1e76..2b3ca0e9f 100644 --- a/src/checker.cpp +++ b/src/checker.cpp @@ -709,7 +709,7 @@ gb_internal void check_scope_usage(Checker *c, Scope *scope, u64 vet_flags) { // Is >256 KiB good enough? if (sz > 1ll<<18) { gbString type_str = type_to_string(e->type); - warning(e->token, "Declaration of '%.*s' may cause a stack overflow? due to its type '%s' having a size of %lld bytes", LIT(e->token.string), type_str, cast(long long)sz); + warning(e->token, "Declaration of '%.*s' may cause a stack overflow due to its type '%s' having a size of %lld bytes", LIT(e->token.string), type_str, cast(long long)sz); gb_string_free(type_str); } } |