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