diff options
Diffstat (limited to 'src/buildtool/common/tree.hpp')
-rw-r--r-- | src/buildtool/common/tree.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buildtool/common/tree.hpp b/src/buildtool/common/tree.hpp index 2f33bfe0..53333901 100644 --- a/src/buildtool/common/tree.hpp +++ b/src/buildtool/common/tree.hpp @@ -87,8 +87,8 @@ class Tree { static auto ComputeId(inputs_t const& inputs) -> std::string { // The type of HashFunction is irrelevant here. It is used for // identification of trees. SHA256 is used. - HashFunction const hash_function{HashFunction::JustHash::Compatible}; - return hash_function.ComputeHash(ComputeDescription(inputs).dump()) + HashFunction const hash_function{HashFunction::Type::PlainSHA256}; + return hash_function.PlainHashData(ComputeDescription(inputs).dump()) .HexString(); } }; |