In several places in std::allocator<const T> (and one in shared_ptr, we were...
In several places in std::allocator<const T> (and one in shared_ptr, we were casting a 'const T*' to a 'void *' - implicitly casting away the const. Add const_cast to make that explicit. No functional change. llvm-svn: 305397
Loading
Please sign in to comment