Howard Hinnant | 11424d3 | 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 | d4ec635 | 2016-10-12 07:46:20 +0000 | [diff] [blame] | 10 | #include "optional" |
Howard Hinnant | 11424d3 | 2013-09-02 20:30:37 +0000 | [diff] [blame] | 11 | |
Eric Fiselier | d4ec635 | 2016-10-12 07:46:20 +0000 | [diff] [blame] | 12 | namespace std |
| 13 | { |
Eric Fiselier | 60737dc | 2016-10-12 06:48:31 +0000 | [diff] [blame] | 14 | |
Marshall Clow | 53fc037 | 2017-02-05 20:52:32 +0000 | [diff] [blame] | 15 | bad_optional_access::~bad_optional_access() _NOEXCEPT = default; |
Marshall Clow | a627d4a | 2017-02-05 20:06:38 +0000 | [diff] [blame] | 16 | |
| 17 | const char* bad_optional_access::what() const _NOEXCEPT { |
| 18 | return "bad_optional_access"; |
| 19 | } |
Howard Hinnant | 11424d3 | 2013-09-02 20:30:37 +0000 | [diff] [blame] | 20 | |
Eric Fiselier | d4ec635 | 2016-10-12 07:46:20 +0000 | [diff] [blame] | 21 | } // std |
| 22 | |