| 25 | namespace internal{ |
| 26 | |
| 27 | template <typename FROM, typename TO> TO caster(FROM from){ // #nocov start |
| 28 | return static_cast<TO>(from) ; |
| 29 | } // #nocov end |
| 30 | |
| 31 | template <typename T> |
| 32 | inline Rcomplex Rcomplex_caster( std::complex<T> from ){ |
nothing calls this directly
no outgoing calls
no test coverage detected