* Refactoring to support SHA-1.

This commit is contained in:
Eelco Dolstra 2005-01-13 15:44:44 +00:00
parent d46b4262dc
commit 73992371a3
6 changed files with 36 additions and 18 deletions

View file

@ -34,6 +34,10 @@ struct DrvInfo
Path drvPath;
Path outPath;
Hash drvHash;
DrvInfo() : drvHash(htMD5)
{
}
};
typedef map<Path, DrvInfo> DrvInfos;