diff options
author | Jannis M. Hoffmann <jannis@fehcom.de> | 2023-10-10 22:27:45 +0200 |
---|---|---|
committer | Jannis M. Hoffmann <jannis@fehcom.de> | 2023-10-10 22:27:45 +0200 |
commit | e96321af67185460f917846b6f55f96d108c6ba8 (patch) | |
tree | f02c882c1fe867a614eb82fd2a595d82729a6d84 /src/status.cc | |
parent | e662cb9875e974bd22a09f164fad41626aa26206 (diff) |
remove unnecessary void in empty function declarations
Diffstat (limited to 'src/status.cc')
-rw-r--r-- | src/status.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/status.cc b/src/status.cc index 341c04f..657367b 100644 --- a/src/status.cc +++ b/src/status.cc @@ -9,6 +9,6 @@ using namespace Binc; -Status::Status(void) {} +Status::Status() {} -Status::~Status(void) {} +Status::~Status() {} |