| 1338 | #ifndef BOOST_NO_CXX11_REF_QUALIFIERS |
| 1339 | template <class U> |
| 1340 | value_type value_or ( U&& v ) const& |
| 1341 | { |
| 1342 | if (this->is_initialized()) |
| 1343 | return get(); |
| 1344 | else |
| 1345 | return boost::forward<U>(v); |
| 1346 | } |
| 1347 | |
| 1348 | template <class U> |
| 1349 | value_type value_or ( U&& v ) && |
nothing calls this directly
no test coverage detected