mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-18 22:41:58 +00:00
Replace empty constructors with default constructors #88
This commit is contained in:
@@ -22,7 +22,7 @@
|
||||
class CVertIndex
|
||||
{
|
||||
public:
|
||||
CVertIndex();
|
||||
CVertIndex() = default;
|
||||
CVertIndex( short ix, short iy );
|
||||
|
||||
void Init( short ix, short iy );
|
||||
@@ -62,11 +62,6 @@ inline CVertIndex BuildOffsetVertIndex(
|
||||
// CVertIndex inlines.
|
||||
// ------------------------------------------------------------------ //
|
||||
|
||||
inline CVertIndex::CVertIndex()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
inline CVertIndex::CVertIndex( short ix, short iy )
|
||||
{
|
||||
x = ix;
|
||||
|
||||
Reference in New Issue
Block a user