Looks like our string_view fix hasn't worked --- tweak.

This commit is contained in:
David Given
2025-08-21 01:19:19 +02:00
parent 9062a531f3
commit 979b550178

View File

@@ -43,8 +43,9 @@ int main(int argc, const char* argv[])
{
const auto* descriptor =
FilesystemProto::FilesystemType_descriptor();
std::string name =
descriptor->FindValueByNumber(fs.type())->name();
auto name =
(std::string)descriptor->FindValueByNumber(fs.type())
->name();
filesystems.insert(name);
}