aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/entropy/dev_random/dev_random.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/entropy/dev_random/dev_random.h')
-rw-r--r--src/lib/entropy/dev_random/dev_random.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/entropy/dev_random/dev_random.h b/src/lib/entropy/dev_random/dev_random.h
index 1df616d56..0d0c2df60 100644
--- a/src/lib/entropy/dev_random/dev_random.h
+++ b/src/lib/entropy/dev_random/dev_random.h
@@ -20,9 +20,9 @@ namespace Botan {
class Device_EntropySource : public EntropySource
{
public:
- std::string name() const { return "RNG Device Reader"; }
+ std::string name() const override { return "RNG Device Reader"; }
- void poll(Entropy_Accumulator& accum);
+ void poll(Entropy_Accumulator& accum) override;
Device_EntropySource(const std::vector<std::string>& fsnames);
~Device_EntropySource();