| 23 | static_assert(visit_struct::field_count<test_struct_one>() == 3, "WTF"); |
| 24 | |
| 25 | struct test_struct_two { |
| 26 | bool b; |
| 27 | int i; |
| 28 | double d; |
| 29 | std::string s; |
| 30 | }; |
| 31 | |
| 32 | VISITABLE_STRUCT(test_struct_two, d, i, b); |
| 33 | // Note the order and that 's' is not registered! |
nothing calls this directly
no outgoing calls
no test coverage detected