mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-12 03:39:10 +00:00
Replace empty constructors with default constructors #88
This commit is contained in:
@@ -52,7 +52,7 @@ public:
|
||||
|
||||
struct AI_NearNode_t
|
||||
{
|
||||
AI_NearNode_t() {}
|
||||
AI_NearNode_t() = default;
|
||||
AI_NearNode_t( int index, float nodedist ) { dist = nodedist; nodeIndex = index; }
|
||||
float dist;
|
||||
int nodeIndex;
|
||||
|
||||
Reference in New Issue
Block a user