Skip to content

Commit f5cad1f

Browse files
committed
executeMod() is only called with (double, double)
1 parent 2a8b422 commit f5cad1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/truffleruby/core/numeric/FloatNodes.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ public static ModNode create() {
223223
return ModNodeFactory.create(null);
224224
}
225225

226-
public abstract Object executeMod(Object a, Object b);
226+
public abstract Object executeMod(double a, double b);
227227

228228
@Specialization
229229
protected double mod(double a, long b) {

0 commit comments

Comments
 (0)