diff options
author | Jack Lloyd <[email protected]> | 2017-09-30 12:42:03 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-09-30 12:42:03 -0400 |
commit | 353331954e806a8d336132c740b8888bc7bf3650 (patch) | |
tree | c333e691928533c3f6c25d1530a6374c8618a134 /src/lib/hash/streebog | |
parent | 406c8e6668de8241bfd889bb4c29ea780b38a859 (diff) |
Use explicit on more single-argument constructors
Diffstat (limited to 'src/lib/hash/streebog')
-rw-r--r-- | src/lib/hash/streebog/streebog.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/hash/streebog/streebog.h b/src/lib/hash/streebog/streebog.h index 5e83efb39..70e38733f 100644 --- a/src/lib/hash/streebog/streebog.h +++ b/src/lib/hash/streebog/streebog.h @@ -28,7 +28,7 @@ class BOTAN_PUBLIC_API(2,2) Streebog : public HashFunction std::unique_ptr<HashFunction> copy_state() const override; - Streebog(size_t output_bits); + explicit Streebog(size_t output_bits); protected: void add_data(const uint8_t input[], size_t length) override; void final_result(uint8_t out[]) override; |