diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-08-27 11:14:38 +0200 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-08-27 11:40:40 +0200 |
commit | bc39ecc0385dd7e0cb9e1df84628e4c6dde34ab5 (patch) | |
tree | 4556b3f5f5898ef56316fc1612a04402b79903ef /src/buildtool/crypto/hash_function.cpp | |
parent | 340f3478dc2bffe1a75496e5c120e88274fee698 (diff) | |
download | justbuild-bc39ecc0385dd7e0cb9e1df84628e4c6dde34ab5.tar.gz |
Reformat code to comply with clang-format 18
... while keeping our .clang-format file.
Diffstat (limited to 'src/buildtool/crypto/hash_function.cpp')
-rw-r--r-- | src/buildtool/crypto/hash_function.cpp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/buildtool/crypto/hash_function.cpp b/src/buildtool/crypto/hash_function.cpp index 6f240e50..4be9033d 100644 --- a/src/buildtool/crypto/hash_function.cpp +++ b/src/buildtool/crypto/hash_function.cpp @@ -57,15 +57,13 @@ auto HashFunction::HashTaggedLine(std::string const& data, return std::move(hasher).Finalize(); } -auto HashFunction::HashBlobFile( - std::filesystem::path const& path) const noexcept - -> std::optional<std::pair<Hasher::HashDigest, std::uintmax_t>> { +auto HashFunction::HashBlobFile(std::filesystem::path const& path) const + noexcept -> std::optional<std::pair<Hasher::HashDigest, std::uintmax_t>> { return HashTaggedFile(path, CreateGitBlobTag); } -auto HashFunction::HashTreeFile( - std::filesystem::path const& path) const noexcept - -> std::optional<std::pair<Hasher::HashDigest, std::uintmax_t>> { +auto HashFunction::HashTreeFile(std::filesystem::path const& path) const + noexcept -> std::optional<std::pair<Hasher::HashDigest, std::uintmax_t>> { return HashTaggedFile(path, CreateGitTreeTag); } |