| 74 | |
| 75 | template <typename T> |
| 76 | inline SEXP make_charsexp__impl(const T& s, Rcpp::traits::true_type) { |
| 77 | return make_charsexp__impl__wstring(s); |
| 78 | } |
| 79 | |
| 80 | template <typename T> |
| 81 | inline SEXP make_charsexp__impl(const T& s, Rcpp::traits::false_type) { |
nothing calls this directly
no test coverage detected