Similar to #819 _Ptr*_cat currently only looks at plain pointers. We should expand that to contiguous_iterators
@CaseyCarter it is weekend, do some fun stuff
Oh this one led me to a beautiful ICE:
template<class T>
inline constexpr bool bark = false;
template<class T, bool = bark<T>>
inline constexpr bool meow = true;
template<class T>
inline constexpr bool meow<T*> = meow<T>;
Did you get a chance to report that ICE on Developer Community for the compiler team to investigate?
Yes I already did and it is already marked as triaged and under consideration
Most helpful comment
Yes I already did and it is already marked as triaged and under consideration