1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-09-16 09:26:28 +02:00

Code style: remove void from constructors without arguments

This commit is contained in:
Arseniy Shestakov
2018-01-13 11:43:26 +03:00
parent 759416ed88
commit da117e9255
19 changed files with 34 additions and 33 deletions

View File

@@ -130,7 +130,7 @@ void CClient::init()
terminate = false;
}
CClient::CClient(void)
CClient::CClient()
{
init();
}
@@ -141,7 +141,7 @@ CClient::CClient(CConnection *con, StartInfo *si)
newGame(con,si);
}
CClient::~CClient(void)
CClient::~CClient()
{
delete applier;
}