Apply the fix from #811 to make everything build against Protobuf 31.

This commit is contained in:
David Given
2025-08-19 23:28:19 +02:00
parent b26735d520
commit d1524f78fb
2 changed files with 5 additions and 4 deletions

View File

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