summaryrefslogtreecommitdiff
path: root/src/buildtool/execution_api/local/local_storage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildtool/execution_api/local/local_storage.cpp')
-rw-r--r--src/buildtool/execution_api/local/local_storage.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buildtool/execution_api/local/local_storage.cpp b/src/buildtool/execution_api/local/local_storage.cpp
index a52e347d..eaeaa617 100644
--- a/src/buildtool/execution_api/local/local_storage.cpp
+++ b/src/buildtool/execution_api/local/local_storage.cpp
@@ -35,10 +35,10 @@ namespace {
[[nodiscard]] auto ReadGitTree(
gsl::not_null<LocalStorage const*> const& storage,
bazel_re::Digest const& digest) noexcept
- -> std::optional<GitCAS::tree_entries_t> {
+ -> std::optional<GitRepo::tree_entries_t> {
if (auto const path = storage->TreePath(digest)) {
if (auto const content = FileSystemManager::ReadFile(*path)) {
- return GitCAS::ReadTreeData(
+ return GitRepo::ReadTreeData(
*content,
HashFunction::ComputeTreeHash(*content).Bytes(),
/*is_hex_id=*/false);