diff options
author | Eric Fiselier <eric@efcs.ca> | 2016-12-02 23:41:18 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2016-12-02 23:41:18 +0000 |
commit | 5877920183809117560cded151e054f720fcee18 (patch) | |
tree | be57ff7d5a230fc400a97944e8e6361c78257fe0 /libcxx/include/variant | |
parent | 918f32fc7b2f4e3c7f3b76db941822aa8ffb5197 (diff) | |
download | bcm5719-llvm-5877920183809117560cded151e054f720fcee18.tar.gz bcm5719-llvm-5877920183809117560cded151e054f720fcee18.zip |
Fix C++03 build
llvm-svn: 288555
Diffstat (limited to 'libcxx/include/variant')
-rw-r--r-- | libcxx/include/variant | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/include/variant b/libcxx/include/variant index 45efc78ed19..94c1eced0ed 100644 --- a/libcxx/include/variant +++ b/libcxx/include/variant @@ -216,7 +216,7 @@ namespace std { // explicitly not using versioning namespace class _LIBCPP_EXCEPTION_ABI bad_variant_access : public exception { public: - _LIBCPP_FUNC_VIS virtual const char* what() const noexcept; + _LIBCPP_FUNC_VIS virtual const char* what() const _NOEXCEPT; }; } // namespace std |