Tested x86_64-linux. Pushed to trunk. -- >8 --
libstdc++-v3/ChangeLog: * include/bits/unicode.h (__unicode::__is_incb_linker): Use _GLIBCXX_STD_A namespace for std::find. --- libstdc++-v3/include/bits/unicode.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libstdc++-v3/include/bits/unicode.h b/libstdc++-v3/include/bits/unicode.h index a14a17c5dfc..1232f60037c 100644 --- a/libstdc++-v3/include/bits/unicode.h +++ b/libstdc++-v3/include/bits/unicode.h @@ -625,7 +625,7 @@ inline namespace __v15_1_0 { const auto __end = std::end(__incb_linkers); // Array is small enough that linear search is faster than binary search. - return std::find(__incb_linkers, __end, __c) != __end; + return _GLIBCXX_STD_A::find(__incb_linkers, __end, __c) != __end; } // @pre c <= 0x10FFFF -- 2.46.1