| 67 | template<typename To, typename Ti> |
| 68 | struct CastWrapper { |
| 69 | static spdlog::logger *getLogger() noexcept { |
| 70 | static std::shared_ptr<spdlog::logger> logger = |
| 71 | common::loggerFactory("ast"); |
| 72 | return logger.get(); |
| 73 | } |
| 74 | |
| 75 | detail::Array<To> operator()(const detail::Array<Ti> &in) { |
| 76 | using detail::jit::UnaryNode; |
nothing calls this directly
no test coverage detected