| 21 | namespace Rcpp{ |
| 22 | |
| 23 | inline SEXP Rcpp_protect(SEXP x){ |
| 24 | if( x != R_NilValue ) PROTECT(x) ; |
| 25 | return x ; |
| 26 | } |
| 27 | |
| 28 | inline void Rcpp_unprotect(int i){ |
| 29 | // Prefer this function over UNPROTECT() in Rcpp so that all |
no outgoing calls
no test coverage detected