aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/test_rng.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/test_rng.cpp')
-rw-r--r--src/tests/test_rng.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/test_rng.cpp b/src/tests/test_rng.cpp
index a5dbbc8e1..6a9580345 100644
--- a/src/tests/test_rng.cpp
+++ b/src/tests/test_rng.cpp
@@ -24,7 +24,7 @@ Botan::RandomNumberGenerator* get_rng(const std::string& algo_str, const std::ve
class AllOnce_RNG : public Fixed_Output_RNG
{
public:
- AllOnce_RNG(const std::vector<byte>& in) : Fixed_Output_RNG(in) {}
+ explicit AllOnce_RNG(const std::vector<byte>& in) : Fixed_Output_RNG(in) {}
Botan::secure_vector<byte> random_vec(size_t) override
{