| 34 | template <bool is_global, typename base_type> |
| 35 | template <typename Class, typename Key> |
| 36 | usertype<Class> basic_table_core<is_global, base_type>::new_usertype(Key&& key) { |
| 37 | constant_automagic_enrollments<> enrollments {}; |
| 38 | return this->new_usertype<Class>(std::forward<Key>(key), std::move(enrollments)); |
| 39 | } |
| 40 | |
| 41 | template <bool is_global, typename base_type> |
| 42 | template <typename Class, typename Key, automagic_flags enrollment_flags> |
nothing calls this directly
no test coverage detected