#if __cplusplus >= 201103L
static_assert(is_same<typename remove_cv<_Tp>::type, _Tp>::value,
"std::vector must have a non-const, non-volatile value_type");
in stl_vector.h requires a vector to have non-const value types. No idea how this compiled before :thinking:
in
stl_vector.h
requires a vector to have non-const value types. No idea how this compiled before :thinking: