You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is contrary to [iterator.range] (per C++14 and up to n6406) which specifies that std::begin is called qualified. libstdc++ gets this right. Also correct in libc++ <iterator> synopsis.
Extended Description
Libc++
cbegin
etc. call the corresponding non-const free functions unqualified, so performing ADL:This is contrary to [iterator.range] (per C++14 and up to n6406) which specifies that
std::begin
is called qualified. libstdc++ gets this right. Also correct in libc++<iterator>
synopsis.From: http://stackoverflow.com/questions/38878454/clang-vs-gcc-stdcrbegin-with-boostiterator-range
The text was updated successfully, but these errors were encountered: