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/include/iofactory.h | |
parent | e662cb9875e974bd22a09f164fad41626aa26206 (diff) |
remove unnecessary void in empty function declarations
Diffstat (limited to 'src/include/iofactory.h')
-rw-r--r-- | src/include/iofactory.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/include/iofactory.h b/src/include/iofactory.h index 70bd8f4..52e911b 100644 --- a/src/include/iofactory.h +++ b/src/include/iofactory.h @@ -16,15 +16,15 @@ namespace Binc { class IOFactory { public: - ~IOFactory(void); + ~IOFactory(); static void addDevice(IODevice *dev); - static IOFactory &getInstance(void); - static IODevice &getClient(void); - static IODevice &getLogger(void); + static IOFactory &getInstance(); + static IODevice &getClient(); + static IODevice &getLogger(); private: - IOFactory(void); + IOFactory(); std::map<std::string, IODevice *> devices; }; |