Remove 'noreturn' attribute from friend declaration. This attribute will be

inherited from the previous out-of-class declaration, and attributes on friend
function declarations are ill-formed in C++11.


git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@168853 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Richard Smith 2012-11-29 04:30:50 +00:00
parent af01e708aa
commit 53008d8b0c

View File

@ -143,7 +143,7 @@ public:
{return !(__x == __y);}
friend exception_ptr current_exception() _NOEXCEPT;
_LIBCPP_NORETURN friend void rethrow_exception(exception_ptr);
friend void rethrow_exception(exception_ptr);
};
template<class _Ep>