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:
William S Fulton 2020-06-02 10:16:18 +01:00
commit 6542d848dc
2 changed files with 2 additions and 2 deletions

View file

@ -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",