diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2014-01-12 16:13:42 +0700 |
---|---|---|
committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2014-01-13 17:59:15 +0700 |
commit | 5d078cbbd7d4319ed6a852e14bf3e45f58a99511 (patch) | |
tree | 65844da2a4220c28f701cf16c7578fa935671a4f /system/include/libcxx/new | |
parent | 44cb63a6ecea58dc21d20843f5af0a006f8b36cd (diff) |
Update libcxx to current version.
Diffstat (limited to 'system/include/libcxx/new')
-rw-r--r-- | system/include/libcxx/new | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/system/include/libcxx/new b/system/include/libcxx/new index 31bb5982..ea4a4a01 100644 --- a/system/include/libcxx/new +++ b/system/include/libcxx/new @@ -94,6 +94,7 @@ public: }; #if defined(_LIBCPP_BUILDING_NEW) || (_LIBCPP_STD_VER > 11) + class _LIBCPP_EXCEPTION_ABI bad_array_length : public bad_alloc { @@ -102,7 +103,10 @@ public: virtual ~bad_array_length() _NOEXCEPT; virtual const char* what() const _NOEXCEPT; }; -#endif + +#define _LIBCPP_BAD_ARRAY_LENGTH_DEFINED + +#endif // defined(_LIBCPP_BUILDING_NEW) || (_LIBCPP_STD_VER > 11) _LIBCPP_FUNC_VIS void __throw_bad_alloc(); // not in C++ spec |