Skip to content

Commit

Permalink
fixed default arg warning
Browse files Browse the repository at this point in the history
  • Loading branch information
desmonddak committed Aug 10, 2024
1 parent 61521b5 commit 857b7b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/arithmetic/multiplier_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ void main() {
CompressionTreeMultiplier(a, b, 4, KoggeStone.new, signed: true);

Multiplier curryUnsignedMultiplier(Logic a, Logic b) =>
CompressionTreeMultiplier(a, b, 4, KoggeStone.new, signed: false);
CompressionTreeMultiplier(a, b, 4, KoggeStone.new);

// Now treat the multiplier as a MAC with a zero input addend [c]
MultiplyAccumulate currySignedMultiplierAsMAC(Logic a, Logic b, Logic c) =>
Expand Down

0 comments on commit 857b7b7

Please sign in to comment.