diff options
Diffstat (limited to 'src/buildtool/storage/large_object_cas.tpp')
-rw-r--r-- | src/buildtool/storage/large_object_cas.tpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildtool/storage/large_object_cas.tpp b/src/buildtool/storage/large_object_cas.tpp index e77f6355..4d2a1a6c 100644 --- a/src/buildtool/storage/large_object_cas.tpp +++ b/src/buildtool/storage/large_object_cas.tpp @@ -39,7 +39,7 @@ template <bool kDoGlobalUplink, ObjectType kType> auto LargeObjectCAS<kDoGlobalUplink, kType>::GetEntryPath( ArtifactDigest const& digest) const noexcept -> std::optional<std::filesystem::path> { - const std::filesystem::path file_path = file_store_.GetPath(digest.hash()); + std::filesystem::path file_path = file_store_.GetPath(digest.hash()); if (FileSystemManager::IsFile(file_path)) { return file_path; } |