mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-08 01:39:36 +00:00
Replace empty constructors with default constructors #88
This commit is contained in:
@@ -148,7 +148,7 @@ struct constraint_limitedhingeparams_t : public constraint_hingeparams_t
|
||||
Vector referencePerpAxisDirection; // unit direction vector vector perpendicular to the hinge axis in world space
|
||||
Vector attachedPerpAxisDirection; // unit direction vector vector perpendicular to the hinge axis in world space
|
||||
|
||||
constraint_limitedhingeparams_t() {}
|
||||
constraint_limitedhingeparams_t() = default;
|
||||
constraint_limitedhingeparams_t( const constraint_hingeparams_t &hinge )
|
||||
{
|
||||
static_cast<constraint_hingeparams_t &>(*this) = hinge;
|
||||
|
||||
Reference in New Issue
Block a user