mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 12:41:30 +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:
parent
ecf2a369cc
commit
ac5922bb32
@ -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:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user