mirror of
https://github.com/celisej567/source-engine.git
synced 2026-02-25 06:32:57 +03:00
Replace empty constructors with default constructors #88
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user