begin deprecated interface not using precious list use Rcpp_PreciousPreserve + Rcpp_PreciousRelease below it
| 98 | // begin deprecated interface not using precious list |
| 99 | // use Rcpp_PreciousPreserve + Rcpp_PreciousRelease below it |
| 100 | inline SEXP Rcpp_PreserveObject(SEXP x) { |
| 101 | if (x != R_NilValue) R_PreserveObject(x); |
| 102 | return x; |
| 103 | } |
| 104 | inline void Rcpp_ReleaseObject(SEXP x) { |
| 105 | if (x != R_NilValue) R_ReleaseObject(x); |
| 106 | } |
no outgoing calls
no test coverage detected