aboutsummaryrefslogtreecommitdiffstats
path: root/src/entropy
diff options
context:
space:
mode:
authorlloyd <[email protected]>2013-11-08 19:20:37 +0000
committerlloyd <[email protected]>2013-11-08 19:20:37 +0000
commit068caf3bf6b8923a133d2ab8a265d935f87246ed (patch)
treebc220423c9f8f71206695334e9351a9043cc3e39 /src/entropy
parent699bb445ebcc9ec911a365e03e20e1cbaad15087 (diff)
Use override
Diffstat (limited to 'src/entropy')
-rw-r--r--src/entropy/entropy_src.h2
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);
}