Skip to content
Snippets Groups Projects
Commit e37daa6f authored by Mick Jordan's avatar Mick Jordan
Browse files

fix FFI regression

parent f49a3117
Branches
No related tags found
No related merge requests found
......@@ -187,7 +187,7 @@ public class CallRFFIHelper {
return RDataFactory.createDoubleVector(new double[n], RDataFactory.COMPLETE_VECTOR);
case LGLSXP:
return RDataFactory.createLogicalVector(new byte[n], RDataFactory.COMPLETE_VECTOR);
case CHARSXP:
case STRSXP:
return RDataFactory.createStringVector(new String[n], RDataFactory.COMPLETE_VECTOR);
case CPLXSXP:
return RDataFactory.createComplexVector(new double[2 * n], RDataFactory.COMPLETE_VECTOR);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment