diff options
Diffstat (limited to 'src/buildtool/crypto/hash_impl.hpp')
-rw-r--r-- | src/buildtool/crypto/hash_impl.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildtool/crypto/hash_impl.hpp b/src/buildtool/crypto/hash_impl.hpp index aa5a9559..d37322bd 100644 --- a/src/buildtool/crypto/hash_impl.hpp +++ b/src/buildtool/crypto/hash_impl.hpp @@ -13,7 +13,7 @@ class IHashImpl { IHashImpl(IHashImpl const&) = default; IHashImpl(IHashImpl&&) = default; auto operator=(IHashImpl const&) -> IHashImpl& = default; - auto operator=(IHashImpl &&) -> IHashImpl& = default; + auto operator=(IHashImpl&&) -> IHashImpl& = default; virtual ~IHashImpl() = default; /// \brief Feed data to the incremental hashing. |