| 135 | } // #nocov end |
| 136 | |
| 137 | extern "C" void R_init_Rcpp(DllInfo* dllinfo) { |
| 138 | setCurrentScope(0); |
| 139 | |
| 140 | registerFunctions(); // call wrapper to register export symbols |
| 141 | |
| 142 | R_useDynamicSymbols(dllinfo, FALSE); // set up symbol symbol lookup (cf R 3.4.0) |
| 143 | |
| 144 | init_Rcpp_cache(); // init the cache |
| 145 | |
| 146 | Rcpp::Rcpp_precious_init(); |
| 147 | |
| 148 | init_Rcpp_routines(dllinfo); // init routines |
| 149 | } |
nothing calls this directly
no test coverage detected