diff options
Diffstat (limited to 'src/buildtool/file_system/git_repo.cpp')
-rw-r--r-- | src/buildtool/file_system/git_repo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buildtool/file_system/git_repo.cpp b/src/buildtool/file_system/git_repo.cpp index 5ab010d4..c75029ee 100644 --- a/src/buildtool/file_system/git_repo.cpp +++ b/src/buildtool/file_system/git_repo.cpp @@ -264,8 +264,8 @@ struct InMemoryODBBackend { return GIT_ERROR; } -[[nodiscard]] auto backend_exists(git_odb_backend* _backend, const git_oid* oid) - -> int { +[[nodiscard]] auto backend_exists(git_odb_backend* _backend, + const git_oid* oid) -> int { if (_backend != nullptr and oid != nullptr) { auto* b = reinterpret_cast<InMemoryODBBackend*>(_backend); // NOLINT if (auto id = ToRawString(*oid)) { |