1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-27 04:30:59 +01:00

Fixes to decodeValidPathInfo and cleanups

This commit is contained in:
Wouter den Breejen 2007-10-08 12:24:02 +00:00
parent dacf2e0e87
commit 13b632ca57
3 changed files with 22 additions and 42 deletions

View file

@ -208,7 +208,6 @@ Path computeStorePathForText(const string & suffix, const string & s,
return makeStorePath(type, hash, suffix);
}
//TODO !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
ValidPathInfo decodeValidPathInfo(std::istream & str)
{
ValidPathInfo info;
@ -245,7 +244,6 @@ ValidPathInfo decodeValidPathInfo(std::istream & str)
if (!str || str.eof()) throw Error("missing input");
return info;
}
//TODO !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
}