Last week, WG21 approved a paper (http://wg21.link/P0403) for allowing literal suffixes for string_view. This means that should be able to write:
constexpr std::string_view sv = "1234"sv;
However, clang has a list of all the allowable suffixes. Update the list to include "sv"
This is in NumericLiteralParser::isValidUDSuffix().
If a change is needed for "sv", wouldn't it be in StringLiteralParser?