diff options
Diffstat (limited to 'src/libstore/path-info.hh')
-rw-r--r-- | src/libstore/path-info.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/path-info.hh b/src/libstore/path-info.hh index 8c4791ac0..af84461b0 100644 --- a/src/libstore/path-info.hh +++ b/src/libstore/path-info.hh @@ -109,6 +109,6 @@ struct ValidPathInfo : PathReferences<StorePath> virtual ~ValidPathInfo() { } }; -typedef list<ValidPathInfo> ValidPathInfos; +typedef std::map<StorePath, ValidPathInfo> ValidPathInfos; } |