diff options
author | Daniel Seither <[email protected]> | 2015-07-30 16:44:33 +0200 |
---|---|---|
committer | Daniel Seither <[email protected]> | 2015-07-30 16:44:33 +0200 |
commit | 025a838b473a3b686ce583f9b73bd151fe95df29 (patch) | |
tree | 473a076d6ccf4ced0c0bbe23087724546950eef2 /src/lib/entropy/beos_stats/es_beos.h | |
parent | 8e8f1d468c8e1d842677488423e6ccd99a1c79f0 (diff) |
entropy: Add missing overrides
Diffstat (limited to 'src/lib/entropy/beos_stats/es_beos.h')
-rw-r--r-- | src/lib/entropy/beos_stats/es_beos.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/entropy/beos_stats/es_beos.h b/src/lib/entropy/beos_stats/es_beos.h index 331ae3bc0..2565b9180 100644 --- a/src/lib/entropy/beos_stats/es_beos.h +++ b/src/lib/entropy/beos_stats/es_beos.h @@ -18,9 +18,9 @@ namespace Botan { class BeOS_EntropySource : public EntropySource { private: - std::string name() const { return "BeOS Statistics"; } + std::string name() const override { return "BeOS Statistics"; } - void poll(Entropy_Accumulator& accum); + void poll(Entropy_Accumulator& accum) override; }; } |