summaryrefslogtreecommitdiff
path: root/src/buildtool/common/tree.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildtool/common/tree.hpp')
-rw-r--r--src/buildtool/common/tree.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/buildtool/common/tree.hpp b/src/buildtool/common/tree.hpp
index 6b76f8f1..cbfe721c 100644
--- a/src/buildtool/common/tree.hpp
+++ b/src/buildtool/common/tree.hpp
@@ -67,7 +67,8 @@ class Tree {
}
static auto ComputeId(inputs_t const& inputs) -> std::string {
- return ComputeHash(ComputeDescription(inputs).dump());
+ return HashFunction::ComputeHash(ComputeDescription(inputs).dump())
+ .HexString();
}
};