mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-17 03:08:26 +00:00
[Cleanup] Use default ctor/dtor in oriented_bounding_box.h (#3307)
# Notes - Use default ctor/dtor instead of empty ones.
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user