1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-07 06:01:48 +02:00

Fix warning

This commit is contained in:
Jacek Galowicz 2023-10-24 19:30:23 +02:00
parent eaced12c94
commit b113d925de

View file

@ -29,12 +29,13 @@ std::string ContentAddressMethod::renderPrefix() const
ContentAddressMethod ContentAddressMethod::parsePrefix(std::string_view & m) ContentAddressMethod ContentAddressMethod::parsePrefix(std::string_view & m)
{ {
ContentAddressMethod method = FileIngestionMethod::Flat; if (splitPrefix(m, "r:")) {
if (splitPrefix(m, "r:")) return FileIngestionMethod::Recursive;
method = FileIngestionMethod::Recursive; }
else if (splitPrefix(m, "text:")) else if (splitPrefix(m, "text:")) {
method = TextIngestionMethod {}; return TextIngestionMethod {};
return method; }
return FileIngestionMethod::Flat;
} }
std::string ContentAddressMethod::render(HashType ht) const std::string ContentAddressMethod::render(HashType ht) const