diff options
Diffstat (limited to 'src/buildtool/crypto/hasher.hpp')
-rw-r--r-- | src/buildtool/crypto/hasher.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildtool/crypto/hasher.hpp b/src/buildtool/crypto/hasher.hpp index 4987f7bb..49e9eeec 100644 --- a/src/buildtool/crypto/hasher.hpp +++ b/src/buildtool/crypto/hasher.hpp @@ -61,7 +61,7 @@ class Hasher final { } private: - std::string bytes_{}; + std::string bytes_; explicit HashDigest(std::string bytes) : bytes_{std::move(bytes)} {} }; |