1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-23 00:00:32 -04:00
nix/src/libstore/fetchers/tree-info.hh

14 lines
180 B
C++
Raw Normal View History

2020-02-01 10:41:54 -05:00
#pragma once
namespace nix {
struct TreeInfo
{
Hash narHash;
std::optional<Hash> rev;
std::optional<uint64_t> revCount;
std::optional<time_t> lastModified;
};
}