mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-14 20:56:56 +00:00
Replace empty constructors with default constructors #88
This commit is contained in:
@@ -222,17 +222,13 @@ inline void IncrementFloatPointer( float* &pBufferPointer, int vertexSize )
|
||||
class CPrimList
|
||||
{
|
||||
public:
|
||||
CPrimList();
|
||||
CPrimList() = default;
|
||||
CPrimList( int nFirstIndex, int nIndexCount );
|
||||
|
||||
int m_FirstIndex;
|
||||
int m_NumIndices;
|
||||
};
|
||||
|
||||
inline CPrimList::CPrimList()
|
||||
{
|
||||
}
|
||||
|
||||
inline CPrimList::CPrimList( int nFirstIndex, int nIndexCount )
|
||||
{
|
||||
m_FirstIndex = nFirstIndex;
|
||||
|
||||
Reference in New Issue
Block a user