| 382 | // Visit the member pointers (&S::a) of the registered members |
| 383 | template <typename S, typename V> |
| 384 | VISIT_STRUCT_CXX14_CONSTEXPR static auto visit_pointers(V && v) -> |
| 385 | typename std::enable_if< |
| 386 | traits::is_visitable<traits::clean_t<S>, CONTEXT>::value |
| 387 | >::type |
| 388 | { |
| 389 | traits::visitable<traits::clean_t<S>, CONTEXT>::visit_pointers(std::forward<V>(v)); |
| 390 | } |
| 391 | |
| 392 | // Visit the accessors (function objects) of the registered members |
| 393 | template <typename S, typename V> |
nothing calls this directly
no test coverage detected