| 186 | // Visit the member pointers (&S::a) of the registered members |
| 187 | template <typename S, typename V> |
| 188 | VISIT_STRUCT_CXX14_CONSTEXPR auto visit_pointers(V && v) -> |
| 189 | typename std::enable_if< |
| 190 | traits::is_visitable<traits::clean_t<S>>::value |
| 191 | >::type |
| 192 | { |
| 193 | traits::visitable<traits::clean_t<S>>::visit_pointers(std::forward<V>(v)); |
| 194 | } |
| 195 | |
| 196 | // Visit the accessors (function objects) of the registered members |
| 197 | template <typename S, typename V> |
no outgoing calls
no test coverage detected