diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2023-01-30 10:12:44 -0500 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2023-01-30 10:14:03 -0500 |
commit | 02e745ba5b3dca3b53d88a49d86f5b22d047a08d (patch) | |
tree | d1427c04c97730eac797ed8e9f6614f3c2da0850 /src/libstore/realisation.hh | |
parent | a31d7d4e5e5eeeb7ca12ca798dc383045e5be1a1 (diff) |
Separate `path.hh` from `content-address.hh`
It is good to separate concerns; `StorePath` (in general) has nothing to
do with `ContentAddress` anyways.
This reduces the diff from #3746.
Diffstat (limited to 'src/libstore/realisation.hh')
-rw-r--r-- | src/libstore/realisation.hh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libstore/realisation.hh b/src/libstore/realisation.hh index 62561fce3..48d0283de 100644 --- a/src/libstore/realisation.hh +++ b/src/libstore/realisation.hh @@ -1,5 +1,8 @@ #pragma once +#include <variant> + +#include "hash.hh" #include "path.hh" #include <nlohmann/json_fwd.hpp> #include "comparator.hh" |