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 e9d5ef84..06c2e7d5 100644
--- a/src/buildtool/common/tree.hpp
+++ b/src/buildtool/common/tree.hpp
@@ -85,7 +85,8 @@ class Tree {
}
static auto ComputeId(inputs_t const& inputs) -> std::string {
- return HashFunction::ComputeHash(ComputeDescription(inputs).dump())
+ return HashFunction::Instance()
+ .ComputeHash(ComputeDescription(inputs).dump())
.HexString();
}
};