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:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user