mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-17 06:03:02 +00:00
Replace empty constructors with default constructors #88
This commit is contained in:
@@ -51,7 +51,7 @@ typedef unsigned long HFont;
|
||||
|
||||
struct Vertex_t
|
||||
{
|
||||
Vertex_t() {}
|
||||
Vertex_t() = default;
|
||||
Vertex_t( const Vector2D &pos, const Vector2D &coord = Vector2D( 0, 0 ) )
|
||||
{
|
||||
m_Position = pos;
|
||||
|
||||
Reference in New Issue
Block a user