mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-11 11:19:09 +00:00
Replace empty constructors with default constructors #88
This commit is contained in:
@@ -29,7 +29,7 @@ typedef int SideType;
|
||||
class VPlane
|
||||
{
|
||||
public:
|
||||
VPlane();
|
||||
VPlane() = default;
|
||||
VPlane(const Vector &vNormal, vec_t dist);
|
||||
|
||||
void Init(const Vector &vNormal, vec_t dist);
|
||||
@@ -77,10 +77,6 @@ private:
|
||||
//-----------------------------------------------------------------------------
|
||||
// Inlines.
|
||||
//-----------------------------------------------------------------------------
|
||||
inline VPlane::VPlane()
|
||||
{
|
||||
}
|
||||
|
||||
inline VPlane::VPlane(const Vector &vNormal, vec_t dist)
|
||||
{
|
||||
m_Normal = vNormal;
|
||||
|
||||
Reference in New Issue
Block a user