Howard Hinnant | 01afa5c | 2013-09-02 20:30:37 +0000 | [diff] [blame] | 1 | //===------------------------ optional.cpp --------------------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is dual licensed under the MIT and the University of Illinois Open |
| 6 | // Source Licenses. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
Eric Fiselier | 35ce485 | 2016-10-12 07:46:20 +0000 | [diff] [blame] | 10 | #include "optional" |
Marshall Clow | 0cdbe60 | 2013-11-15 22:42:10 +0000 | [diff] [blame] | 11 | #include "experimental/optional" |
Howard Hinnant | 01afa5c | 2013-09-02 20:30:37 +0000 | [diff] [blame] | 12 | |
Eric Fiselier | 35ce485 | 2016-10-12 07:46:20 +0000 | [diff] [blame] | 13 | namespace std |
| 14 | { |
Eric Fiselier | ead5d40 | 2016-10-12 06:48:31 +0000 | [diff] [blame] | 15 | |
Eric Fiselier | fbc8016 | 2016-10-12 06:45:11 +0000 | [diff] [blame] | 16 | bad_optional_access::~bad_optional_access() _NOEXCEPT = default; |
Howard Hinnant | 01afa5c | 2013-09-02 20:30:37 +0000 | [diff] [blame] | 17 | |
Eric Fiselier | 35ce485 | 2016-10-12 07:46:20 +0000 | [diff] [blame] | 18 | } // std |
| 19 | |
| 20 | _LIBCPP_BEGIN_NAMESPACE_EXPERIMENTAL |
| 21 | |
| 22 | bad_optional_access::~bad_optional_access() _NOEXCEPT = default; |
Eric Fiselier | ead5d40 | 2016-10-12 06:48:31 +0000 | [diff] [blame] | 23 | |
Marshall Clow | 4ad67e0 | 2014-12-09 14:49:17 +0000 | [diff] [blame] | 24 | _LIBCPP_END_NAMESPACE_EXPERIMENTAL |