diff options
author | Eric Fiselier <eric@efcs.ca> | 2016-10-12 10:19:48 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2016-10-12 10:19:48 +0000 |
commit | 6ce45e0840bed276887787749ee7f83fbec65ab9 (patch) | |
tree | dbf37dec4a0f4a4e19e0ed33de33722a6a872562 /libcxx/test/std/language.support | |
parent | d68028789807429945c7852bbda4effa95bf7d21 (diff) | |
download | bcm5719-llvm-6ce45e0840bed276887787749ee7f83fbec65ab9.tar.gz bcm5719-llvm-6ce45e0840bed276887787749ee7f83fbec65ab9.zip |
Remove usages of _ALIGNAS_TYPE
llvm-svn: 283999
Diffstat (limited to 'libcxx/test/std/language.support')
-rw-r--r-- | libcxx/test/std/language.support/support.exception/except.nested/rethrow_if_nested.pass.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libcxx/test/std/language.support/support.exception/except.nested/rethrow_if_nested.pass.cpp b/libcxx/test/std/language.support/support.exception/except.nested/rethrow_if_nested.pass.cpp index 4ee95fdf300..9f57a201a21 100644 --- a/libcxx/test/std/language.support/support.exception/except.nested/rethrow_if_nested.pass.cpp +++ b/libcxx/test/std/language.support/support.exception/except.nested/rethrow_if_nested.pass.cpp @@ -18,12 +18,14 @@ #include <cstdlib> #include <cassert> +#include "test_macros.h" + class A { int data_; public: explicit A(int data) : data_(data) {} - virtual ~A() _NOEXCEPT {} + virtual ~A() TEST_NOEXCEPT {} friend bool operator==(const A& x, const A& y) {return x.data_ == y.data_;} }; |