<__msvc_string_view.hpp>: Avoid redundant forwarding in char_traits::assign by frederick-vs-ja · Pull Request #5488 · microsoft/STL (original) (raw)

#3334 (and following-up #4047) made basic_string correctly handle lifetime of elements in constant evaluation, and #4613 made char_traits::assign no longer consider lifetime of elements (as specified by the standard).

However, there're some forwarding calls in char_traits::assign (added by #2305) that were made redundant but not removed. This PR removes the redundant forwarding.