aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/test_rng.cpp
diff options
context:
space:
mode:
authorDaniel Seither <[email protected]>2015-07-30 19:30:09 +0200
committerDaniel Seither <[email protected]>2015-07-30 19:30:09 +0200
commitc37ebd2d0bb9ad6d2cf6d4541a1de523b584b36e (patch)
treea112526de3c662b71bfe323f4f025b4879f6d98c /src/tests/test_rng.cpp
parent313b1b4e75d8ee6f1d271f7de2e21facb85b2c46 (diff)
tests: Add missing overrides
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 81a539f1e..d129ed208 100644
--- a/src/tests/test_rng.cpp
+++ b/src/tests/test_rng.cpp
@@ -31,7 +31,7 @@ RandomNumberGenerator* get_rng(const std::string& algo_str, const std::string& i
public:
AllOnce_RNG(const std::vector<byte>& in) : Fixed_Output_RNG(in) {}
- Botan::secure_vector<byte> random_vec(size_t)
+ Botan::secure_vector<byte> random_vec(size_t) override
{
Botan::secure_vector<byte> vec(this->remaining());
this->randomize(vec.data(), vec.size());