| 118 | //---------------------------------------------------------- |
| 119 | |
| 120 | struct T7 : T6 |
| 121 | { |
| 122 | std::string s; |
| 123 | |
| 124 | bool |
| 125 | get_b() const |
| 126 | { |
| 127 | return b; |
| 128 | } |
| 129 | |
| 130 | private: |
| 131 | bool b = false; |
| 132 | |
| 133 | BOOST_DESCRIBE_CLASS(T7, (T6), (s), (), (b)) |
| 134 | }; |
| 135 | |
| 136 | //---------------------------------------------------------- |
| 137 |
nothing calls this directly
no outgoing calls
no test coverage detected