Commit bef49287 by Jonathan Wakely Committed by Jonathan Wakely

* include/bits/stl_function.h (logical_not<void>): Add noexcept.

From-SVN: r204293
parent 7115d32a
2013-11-01 Jonathan Wakely <jwakely.gcc@gmail.com>
* include/bits/stl_function.h (logical_not<void>): Add noexcept.
2013-11-01 Paolo Carlini <paolo.carlini@oracle.com>
PR libstdc++/58952
......
......@@ -554,7 +554,9 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
{
template <typename _Tp>
auto
operator()(_Tp&& __t) const -> decltype(!std::forward<_Tp>(__t))
operator()(_Tp&& __t) const
noexcept(noexcept(!std::forward<_Tp>(__t)))
-> decltype(!std::forward<_Tp>(__t))
{ return !std::forward<_Tp>(__t); }
typedef __is_transparent is_transparent;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment