| 504 | */ |
| 505 | template <typename T> |
| 506 | inline SEXP wrap_dispatch_unknown(const T& object, ::Rcpp::traits::true_type) { |
| 507 | RCPP_DEBUG_1("wrap_dispatch_unknown<%s>(., false )", DEMANGLE(T)) |
| 508 | // here we know (or assume) that T is convertible to SEXP |
| 509 | SEXP x = object; |
| 510 | return x; |
| 511 | } |
| 512 | |
| 513 | /** |
| 514 | * This is the worst case : |
no outgoing calls
no test coverage detected