mirror of
https://github.com/celisej567/source-engine.git
synced 2025-12-31 21:48:22 +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;
|
||||
|
||||
@@ -325,7 +325,7 @@ struct DynamicState_t
|
||||
bool m_bBuffer2Frames;
|
||||
#endif
|
||||
|
||||
DynamicState_t() {}
|
||||
DynamicState_t() = default;
|
||||
|
||||
private:
|
||||
DynamicState_t( DynamicState_t const& );
|
||||
|
||||
Reference in New Issue
Block a user