| 149 | //---------------------------------------------------------- |
| 150 | |
| 151 | struct T8 |
| 152 | { |
| 153 | int n; |
| 154 | double d; |
| 155 | #ifndef BOOST_NO_CXX17_HDR_OPTIONAL |
| 156 | std::optional<std::string> opt_s; |
| 157 | #else |
| 158 | std::string opt_s; |
| 159 | #endif // BOOST_NO_CXX17_HDR_OPTIONAL |
| 160 | }; |
| 161 | BOOST_DESCRIBE_STRUCT(T8, (), (n, d, opt_s)) |
| 162 | |
| 163 | //---------------------------------------------------------- |
nothing calls this directly
no outgoing calls
no test coverage detected