Skip to content

Commit

Permalink
Merge pull request #1 from symmetryinvestments/safe_fix
Browse files Browse the repository at this point in the history
Fix @safe compile error
  • Loading branch information
burner authored Feb 21, 2024
2 parents b570d6b + a0e3e4a commit 7ca600f
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 7ca600f

Please sign in to comment.