diff options
Diffstat (limited to 'src/entropy')
-rw-r--r-- | src/entropy/entropy_src.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/entropy/entropy_src.h b/src/entropy/entropy_src.h index 6d70207e1..552eca9de 100644 --- a/src/entropy/entropy_src.h +++ b/src/entropy/entropy_src.h @@ -108,7 +108,7 @@ class BOTAN_DLL Entropy_Accumulator_BufferedComputation : Entropy_Accumulator(goal), entropy_sink(sink) {} private: - virtual void add_bytes(const byte bytes[], size_t length) + void add_bytes(const byte bytes[], size_t length) override { entropy_sink.update(bytes, length); } |