| 795 | // > |
| 796 | #endif |
| 797 | optional_constexpr14 optional(optional const &other) : has_value_(other.has_value()) { |
| 798 | if (other.has_value()) { |
| 799 | contained.construct_value(other.contained.value()); |
| 800 | } |
| 801 | } |
| 802 | |
| 803 | #if optional_CPP11_OR_GREATER |
| 804 |
nothing calls this directly
no outgoing calls
no test coverage detected