Skip to content

Commit

Permalink
Fix @safe compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
burner committed Feb 21, 2024
1 parent b570d6b commit a0e3e4a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions source/iban/banks.d
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ Bank[] getBanks() @safe nothrow {
return ret;
}

@system:
static private immutable Bank[] allBanks = cast(immutable) [
static private const Bank[] allBanks = [
Bank("HR", true, "HAABHR22", "2500009", Nullable!(string).init, "ADDIKO BANK d.d. Zagreb", "ADDIKO BANK d.d. Zagreb"),
Bank("HR", true, "KREZHR2X", "2481000", Nullable!(string).init, "AGRAM BANKA d.d. Zagreb", "AGRAM BANKA d.d. Zagreb"),
Bank("HR", true, "SKOVHR22", "4133006", Nullable!(string).init, "BANKA KOVANICA d.d. Varaždin", "BANKA KOVANICA d.d. Varaždin"),
Expand Down

0 comments on commit a0e3e4a

Please sign in to comment.