Re: [PATCH] PR libstdc++/83427 detect weak result type from noexcept functions

2017-12-14 Thread Jonathan Wakely
On 14/12/17 17:29 +, Jonathan Wakely wrote: Richard Smith pointed out that our "weak result type" implementation (used by std::reference_wrapper and std::bind) doesn't work for noexcept functions. The simple fix is to adjust every partial specialization to include noexcept deduction (which I

[PATCH] PR libstdc++/83427 detect weak result type from noexcept functions

2017-12-14 Thread Jonathan Wakely
Richard Smith pointed out that our "weak result type" implementation (used by std::reference_wrapper and std::bind) doesn't work for noexcept functions. The simple fix is to adjust every partial specialization to include noexcept deduction (which I'll do for gcc-7-branch), but I took the opportun