Skip to content
Snippets Groups Projects
Commit 55d17f77 authored by Christian Humer's avatar Christian Humer
Browse files

Fix fallback handlers were not using generic arguments.

parent 24748817
Branches
No related tags found
No related merge requests found
......@@ -359,7 +359,7 @@ public abstract class Identical extends RBuiltinNode {
@SuppressWarnings("unused")
@Fallback
protected byte doInternalIdenticalWrongTypes(Object x, Object y, boolean numEq, boolean singleNA, boolean attribAsSet, boolean ignoreBytecode, boolean ignoreEnvironment) {
protected byte doInternalIdenticalWrongTypes(Object x, Object y, Object numEq, Object singleNA, Object attribAsSet, Object ignoreBytecode, Object ignoreEnvironment) {
if (x.getClass() != y.getClass()) {
return RRuntime.LOGICAL_FALSE;
} else {
......
......@@ -204,4 +204,5 @@ public abstract class Merge extends RBuiltinNode {
return ans;
}
}
......@@ -60,7 +60,7 @@ public abstract class Tabulate extends RBuiltinNode {
@SuppressWarnings("unused")
@Fallback
@TruffleBoundary
protected RIntVector tabulate(Object bin, int nBins) {
protected RIntVector tabulate(Object bin, Object nBins) {
throw RError.error(this, RError.Message.INVALID_INPUT);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment