Replace empty constructors with default constructors #88

This commit is contained in:
nillerusr
2022-11-05 14:22:27 +03:00
parent ba90de20d9
commit 8fbc002a37
97 changed files with 192 additions and 2620 deletions

View File

@@ -80,7 +80,7 @@ private:
// A list of all vertices affecting a particular morph target
struct MorphVertexList_t
{
MorphVertexList_t() {}
MorphVertexList_t() = default;
MorphVertexList_t( const MorphVertexList_t& src ) : m_nMorphTargetId( src.m_nMorphTargetId ) {}
int m_nMorphTargetId;

View File

@@ -325,7 +325,7 @@ struct DynamicState_t
bool m_bBuffer2Frames;
#endif
DynamicState_t() {}
DynamicState_t() = default;
private:
DynamicState_t( DynamicState_t const& );