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
static_assert(std::contiguous_iterator<const volatile int*>) fails with this STL, while it works with lib(std)c++. Without the volatile it works everywhere. Who is correct?
I can't see why a pointer to volatile data shouldn't be a valid iterator.
static_assert(std::contiguous_iterator<const volatile int*>)fails with this STL, while it works with lib(std)c++. Without thevolatileit works everywhere. Who is correct?I can't see why a pointer to
volatiledata shouldn't be a valid iterator.