| 355 | } |
| 356 | |
| 357 | inline SEXP rcpp_exception_to_r_condition(const Rcpp::exception& ex) { |
| 358 | ex.copy_stack_trace_to_r(); |
| 359 | return exception_to_condition_template(ex, ex.include_call()); |
| 360 | } |
| 361 | |
| 362 | inline SEXP exception_to_r_condition( const std::exception& ex){ |
| 363 | return exception_to_condition_template(ex, RCPP_DEFAULT_INCLUDE_CALL); |
nothing calls this directly
no test coverage detected