| 112 | |
| 113 | template <typename... Properties> |
| 114 | PropertyTuple<Properties...> MakeProperties(Properties... props) { |
| 115 | return {std::make_tuple(props...)}; |
| 116 | } |
| 117 | |
| 118 | template <typename Enum> |
| 119 | struct EnumTraits {}; |
no outgoing calls
no test coverage detected