From a2547bf1fe447dd7197791803b64ef085a1b4a1a Mon Sep 17 00:00:00 2001 From: peterbell10 Date: Thu, 8 Aug 2019 19:49:00 +0100 Subject: cBoundingBox: Fix tolua warning (#4361) tolua was warning about no support for `operator =`. Ref: #4360 --- src/BoundingBox.cpp | 21 --------------------- 1 file changed, 21 deletions(-) (limited to 'src/BoundingBox.cpp') diff --git a/src/BoundingBox.cpp b/src/BoundingBox.cpp index bc4926011..48ed42789 100644 --- a/src/BoundingBox.cpp +++ b/src/BoundingBox.cpp @@ -59,27 +59,6 @@ cBoundingBox::cBoundingBox(Vector3d a_Pos, double a_CubeLength) : -cBoundingBox::cBoundingBox(const cBoundingBox & a_Orig) : - m_Min(a_Orig.m_Min), - m_Max(a_Orig.m_Max) -{ -} - - - - - -cBoundingBox & cBoundingBox::operator=(const cBoundingBox & a_Other) -{ - m_Min = a_Other.m_Min; - m_Max = a_Other.m_Max; - return *this; -} - - - - - void cBoundingBox::Move(double a_OffX, double a_OffY, double a_OffZ) { m_Min.x += a_OffX; -- cgit v1.2.3