Replace empty constructors with default constructors #88

This commit is contained in:
nillerusr
2022-11-05 14:23:05 +03:00
parent ba90de20d9
commit 8fbc002a37
97 changed files with 192 additions and 2620 deletions
+1 -6
View File
@@ -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;