Replace basic_string_view<uint8_t> with string_view

In newer versions of libc++, std::char_traits<T> is no longer defined
for non-character types, and a result, std::basic_string_view<uint8_t>
is also no longer defined. See
https://discourse.llvm.org/t/deprecating-std-string-t-for-non-character-t/66779.

A char is allowed to alias everything, so use a plain std::string_view
instead.

Bug: 175635923
Test: m create_minidebuginfo
Change-Id: I6878e3e5ddf0191e1259afd38ef7df18e5200324
1 file changed