aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/entropy/unix_procs
diff options
context:
space:
mode:
authorDaniel Seither <[email protected]>2015-07-30 16:44:33 +0200
committerDaniel Seither <[email protected]>2015-07-30 16:44:33 +0200
commit025a838b473a3b686ce583f9b73bd151fe95df29 (patch)
tree473a076d6ccf4ced0c0bbe23087724546950eef2 /src/lib/entropy/unix_procs
parent8e8f1d468c8e1d842677488423e6ccd99a1c79f0 (diff)
entropy: Add missing overrides
Diffstat (limited to 'src/lib/entropy/unix_procs')
-rw-r--r--src/lib/entropy/unix_procs/unix_procs.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/entropy/unix_procs/unix_procs.h b/src/lib/entropy/unix_procs/unix_procs.h
index cf6a8bb7d..808d34221 100644
--- a/src/lib/entropy/unix_procs/unix_procs.h
+++ b/src/lib/entropy/unix_procs/unix_procs.h
@@ -23,7 +23,7 @@ namespace Botan {
class Unix_EntropySource : public EntropySource
{
public:
- std::string name() const { return "Unix Process Runner"; }
+ std::string name() const override { return "Unix Process Runner"; }
void poll(Entropy_Accumulator& accum) override;
@@ -81,9 +81,9 @@ class Unix_EntropySource : public EntropySource
class UnixProcessInfo_EntropySource : public EntropySource
{
public:
- std::string name() const { return "Unix Process Info"; }
+ std::string name() const override { return "Unix Process Info"; }
- void poll(Entropy_Accumulator& accum);
+ void poll(Entropy_Accumulator& accum) override;
};
}