From ac5922bb32ec9f740a1dfc071bc411dca0a5ce6e Mon Sep 17 00:00:00 2001 From: Alex King <89047260+Kinglykrab@users.noreply.github.com> Date: Sat, 29 Apr 2023 20:51:21 -0400 Subject: [PATCH] [Cleanup] Use default ctor/dtor in oriented_bounding_box.h (#3307) # Notes - Use default ctor/dtor instead of empty ones. --- zone/oriented_bounding_box.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zone/oriented_bounding_box.h b/zone/oriented_bounding_box.h index 4d8a77fb3..bbc3cc6c3 100644 --- a/zone/oriented_bounding_box.h +++ b/zone/oriented_bounding_box.h @@ -7,9 +7,9 @@ class OrientedBoundingBox { public: - OrientedBoundingBox() { } + OrientedBoundingBox() = default; OrientedBoundingBox(const glm::vec3 &pos, const glm::vec3 &rot, const glm::vec3 &scale, const glm::vec3 &extents); - ~OrientedBoundingBox() { } + ~OrientedBoundingBox() = default; bool ContainsPoint(const glm::vec3 &p) const; private: