Re: [PATCH] Missing noexcept in string_view::find_first_of declaration

2017-11-27 Thread Jonathan Wakely
On 24/11/17 17:32 +, Jonathan Wakely wrote: On 24/11/17 18:09 +0100, Stephan Bergmann wrote: cf. definition in libstdc++-v3/include/bits/string_view.tcc that does have the noexcept (like all the other overloads defined inline in libstdc++-v3/include/std/string_view do). I thought Jason alr

Re: [PATCH] Missing noexcept in string_view::find_first_of declaration

2017-11-24 Thread Jonathan Wakely
On 24/11/17 18:09 +0100, Stephan Bergmann wrote: cf. definition in libstdc++-v3/include/bits/string_view.tcc that does have the noexcept (like all the other overloads defined inline in libstdc++-v3/include/std/string_view do). I thought Jason already fixed this in https://gcc.gnu.org/ml/gcc-pat

[PATCH] Missing noexcept in string_view::find_first_of declaration

2017-11-24 Thread Stephan Bergmann
>From 0a75fbb0c16e216892d16f1ba3448471e33f61bb Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Fri, 24 Nov 2017 18:04:30 +0100 Subject: [PATCH] Missing noexcept in string_view::find_first_of declaration cf. definition in libstdc++-v3/include/bits/string_view.tcc that does have