Skip to content
This repository has been archived by the owner on Nov 3, 2024. It is now read-only.

Commit

Permalink
Fix build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanPodymov committed Jul 28, 2024
1 parent 185d745 commit 0d2c445
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions Calcium/Enums.swift
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,7 @@ extension CalciumCommon.Operation {
func calculateValue(lhs: BInt, rhs: BInt) -> BInt {
switch self {
case .plus:
.init(calculateValueKMM(
lhs: .init(stringLiteral: lhs.asString(radix: 10)),
rhs: .init(stringLiteral: rhs.asString(radix: 10))
).toPlainString()) ?? .init()
lhs + rhs
case .minus:
lhs - rhs
case .multiply:
Expand Down

0 comments on commit 0d2c445

Please sign in to comment.