Get rid of C-style empty function parameter indicators

This commit is contained in:
Lioncash 2014-08-30 12:41:21 -04:00
commit 1d706b2311
20 changed files with 31 additions and 31 deletions

View file

@ -24,7 +24,7 @@ CDump::CDump(const std::string& filename) :
}
}
CDump::~CDump(void)
CDump::~CDump()
{
if (m_pData != nullptr)
{
@ -33,7 +33,7 @@ CDump::~CDump(void)
}
}
int CDump::GetNumberOfSteps(void)
int CDump::GetNumberOfSteps()
{
return (int)(m_size / STRUCTUR_SIZE);
}