R - Remove constantWrapper message wrapping constants

An implementation is still needed for constants.
This commit is contained in:
William S Fulton 2015-06-12 20:26:24 +01:00
commit 9b2bde403b

View file

@ -2181,6 +2181,16 @@ int R::functionWrapper(Node *n) {
return SWIG_OK;
}
/* ----------------------------------------------------------------------
* R::constantWrapper()
* ---------------------------------------------------------------------- */
int R::constantWrapper(Node *n) {
(void) n;
// TODO
return SWIG_OK;
}
/*****************************************************
Add the specified routine name to the collection of
generated routines that are called from R functions.