Fix further missing semicolons in R code.
Fixes errors in R code when using -small as this option causes lines to be joined.
This commit is contained in:
parent
d58041606e
commit
6542d848dc
2 changed files with 2 additions and 2 deletions
|
|
@ -17,7 +17,7 @@
|
|||
SWIG_exception_fail(SWIG_RuntimeError, "Let's see how the bindings manage this exception!");
|
||||
}
|
||||
%typemap(scoerceout) Foo*
|
||||
%{ if (!is.null($result) && !is.logical($result)) {$result <- new("$R_class", ref=$result) ;} %}
|
||||
%{ if (!is.null($result) && !is.logical($result)) {$result <- new("$R_class", ref=$result) ;}; %}
|
||||
|
||||
%inline %{
|
||||
#include <string>
|
||||
|
|
|
|||
|
|
@ -1898,7 +1898,7 @@ int R::functionWrapper(Node *n) {
|
|||
name, " = getNativeSymbolInfo(", name, ");",
|
||||
"\n};\n",
|
||||
"if(is(", name, ", \"NativeSymbolInfo\")) {\n",
|
||||
name, " = ", name, "$address", ";\n}\n",
|
||||
name, " = ", name, "$address", ";\n};\n",
|
||||
"if(is(", name, ", \"ExternalReference\")) {\n",
|
||||
name, " = ", name, "@ref;\n}\n",
|
||||
"}; \n",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue