Correct new Raise functions to be static
This commit is contained in:
parent
fd2420cdcc
commit
0e60d6b7a4
2 changed files with 2 additions and 2 deletions
|
|
@ -33,7 +33,7 @@
|
|||
|
||||
// raise
|
||||
%runtime %{
|
||||
void SWIG_Octave_Raise(const octave_value &obj, const char *type) {
|
||||
SWIGINTERN void SWIG_Octave_Raise(const octave_value &obj, const char *type) {
|
||||
if (obj.is_string())
|
||||
error("%s", obj.string_value().c_str());
|
||||
else
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ SWIGEXPORT void SWIG_init(void) {
|
|||
%end_block %enddef
|
||||
|
||||
%runtime %{
|
||||
void SWIG_R_Raise(SEXP obj, const char *msg) {
|
||||
SWIGINTERN void SWIG_R_Raise(SEXP obj, const char *msg) {
|
||||
Rf_error(Rf_isString(obj) ? CHAR(Rf_asChar(obj)) : msg);
|
||||
}
|
||||
%}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue