mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-12 03:39:10 +00:00
Replace empty constructors with default constructors #88
This commit is contained in:
@@ -54,7 +54,7 @@ public:
|
||||
class CSPVert
|
||||
{
|
||||
public:
|
||||
CSPVert();
|
||||
CSPVert() = default;
|
||||
CSPVert( Vector const &vPos, const CSPColor &vColor=CSPColor( Vector(1, 1, 1), 1 ) );
|
||||
|
||||
void Init( Vector const &vPos, const CSPColor &vColor=CSPColor( Vector(1, 1, 1), 1 ) );
|
||||
@@ -254,10 +254,6 @@ inline CTextParams::CTextParams()
|
||||
m_flLetterWidth = 3;
|
||||
}
|
||||
|
||||
inline CSPVert::CSPVert()
|
||||
{
|
||||
}
|
||||
|
||||
inline CSPVert::CSPVert( Vector const &vPos, const CSPColor &vColor )
|
||||
{
|
||||
Init( vPos, vColor );
|
||||
|
||||
Reference in New Issue
Block a user