diff options
Diffstat (limited to 'c/common.h')
-rw-r--r-- | c/common.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -14,8 +14,8 @@ struct Win32Error : public std::exception { Win32Error(DWORD dwErr); - ~Win32Error(void); - virtual const char* what(void) const noexcept override; + ~Win32Error(); + virtual const char* what() const noexcept override; private: DWORD m_dwErr; char* const m_szMsg = NULL; @@ -24,7 +24,7 @@ private: struct Library { Library(const TCHAR* tszLibrary); - ~Library(void); + ~Library(); FARPROC GetProcAddress(const char* szProc); private: HMODULE m_hModule; |