| 32 | }; |
| 33 | |
| 34 | inline SEXP Rcpp_protected_eval(void* eval_data) { |
| 35 | EvalData* data = static_cast<EvalData*>(eval_data); |
| 36 | return ::Rf_eval(data->expr, data->env); |
| 37 | } |
| 38 | |
| 39 | // This is used internally instead of Rf_eval() to make evaluation safer |
| 40 | inline SEXP Rcpp_eval_impl(SEXP expr, SEXP env) { // #nocov |
nothing calls this directly
no outgoing calls
no test coverage detected