Creates an optional uninitialized. No-throw
| 932 | // Creates an optional<T> uninitialized. |
| 933 | // No-throw |
| 934 | optional( none_t none_ ) BOOST_NOEXCEPT : base(none_) {} |
| 935 | |
| 936 | // Creates an optional<T> initialized with 'val'. |
| 937 | // Can throw if T::T(T const&) does |
no test coverage detected