mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-08 09:49:36 +00:00
Replace empty constructors with default constructors #88
This commit is contained in:
@@ -15,7 +15,7 @@
|
||||
class CNodeVert
|
||||
{
|
||||
public:
|
||||
CNodeVert() {}
|
||||
CNodeVert() = default;
|
||||
CNodeVert( int ix, int iy ) {x=ix; y=iy;}
|
||||
|
||||
inline int& operator[]( int i ) {return ((int*)this)[i];}
|
||||
|
||||
Reference in New Issue
Block a user