mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 15:48:51 +00:00
Remove ?
This commit is contained in:
+1
-1
@@ -709,7 +709,7 @@ gb_internal void check_scope_usage(Checker *c, Scope *scope, u64 vet_flags) {
|
|||||||
// Is >256 KiB good enough?
|
// Is >256 KiB good enough?
|
||||||
if (sz > 1ll<<18) {
|
if (sz > 1ll<<18) {
|
||||||
gbString type_str = type_to_string(e->type);
|
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);
|
gb_string_free(type_str);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user