Merge branch 'r-script-fixes'

* r-script-fixes:
  Fix further missing semicolons in R code.
  fixed some missing semicolons. Each one caused a compile error in generated code
This commit is contained in:
William S Fulton 2020-06-02 10:19:54 +01:00
commit 85f2378b84
3 changed files with 8 additions and 8 deletions

View file

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