Skip to content
Snippets Groups Projects
Commit ef07abf6 authored by Lukas Stadler's avatar Lukas Stadler
Browse files

Merge pull request #285 in G/fastr from fix_fallback_handlers to master

* commit '55d17f77':
  Fix fallback handlers were not using generic arguments.
parents 24748817 55d17f77
No related branches found
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.
Finish editing this message first!
Please register or to comment