| 885 | using base::value; |
| 886 | |
| 887 | bool load(handle src, bool convert) { |
| 888 | return base::template load_impl<copyable_holder_caster<type, holder_type>>(src, convert); |
| 889 | } |
| 890 | |
| 891 | explicit operator type *() { return this->value; } |
| 892 | // static_cast works around compiler error with MSVC 17 and CUDA 10.2 |
nothing calls this directly
no outgoing calls
no test coverage detected