Eric Fiselier | 78653ab | 2015-07-31 02:24:58 +0000 | [diff] [blame] | 1 | //===---------------------------- any.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 | f6b3bfe | 2016-08-11 03:13:11 +0000 | [diff] [blame] | 10 | #include "any" |
Eric Fiselier | 78653ab | 2015-07-31 02:24:58 +0000 | [diff] [blame] | 11 | |
Eric Fiselier | f6b3bfe | 2016-08-11 03:13:11 +0000 | [diff] [blame] | 12 | namespace std { |
Eric Fiselier | 78653ab | 2015-07-31 02:24:58 +0000 | [diff] [blame] | 13 | const char* bad_any_cast::what() const _NOEXCEPT { |
| 14 | return "bad any cast"; |
| 15 | } |
Eric Fiselier | f6b3bfe | 2016-08-11 03:13:11 +0000 | [diff] [blame] | 16 | } |