Replace boost::string_ref with std::string_view
gdb has a nasty bug (bug 20020) that results in a segfault when printing an object that contains a static constexpr
variable (as boost::string_ref
does).
OTOH std::string_view
works nicely in gdb.