| 318 | |
| 319 | template <class... Args> |
| 320 | static std::unique_ptr<CObj> case_array(ArrayType const* Ty, Args&& ... args) |
| 321 | { |
| 322 | return std::unique_ptr<CObj>{new CArrayObj{*Ty, std::forward<Args>(args)...}}; |
| 323 | } |
| 324 | |
| 325 | template <class... Args> |
| 326 | static std::unique_ptr<CObj> case_func(FunctionType const* Ty, Args&& ... args) |
nothing calls this directly
no outgoing calls
no test coverage detected