| 178 | // by the compiler and otherwise '__attribute__ ((visibility ("hidden")))' |
| 179 | |
| 180 | inline attribute_hidden SEXP rcpp_get_stack_trace(){ |
| 181 | typedef SEXP (*Fun)(void); |
| 182 | static Fun fun = GET_CALLABLE("rcpp_get_stack_trace"); |
| 183 | return fun(); |
| 184 | } |
| 185 | |
| 186 | inline attribute_hidden SEXP rcpp_set_stack_trace(SEXP e){ |
| 187 | typedef SEXP (*Fun)(SEXP); |
no outgoing calls
no test coverage detected