mirror of
https://github.com/celisej567/source-engine.git
synced 2026-01-03 05:49:41 +03:00
Replace empty constructors with default constructors #88
This commit is contained in:
@@ -67,7 +67,7 @@ typedef enum
|
||||
class CHostState
|
||||
{
|
||||
public:
|
||||
CHostState();
|
||||
CHostState() = default;
|
||||
void Init();
|
||||
void FrameUpdate( float time );
|
||||
void SetNextState( HOSTSTATES nextState );
|
||||
@@ -275,10 +275,6 @@ static void WatchDogHandler()
|
||||
// Class implementation
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
CHostState::CHostState()
|
||||
{
|
||||
}
|
||||
|
||||
void CHostState::Init()
|
||||
{
|
||||
SetState( HS_RUN, true );
|
||||
|
||||
Reference in New Issue
Block a user