various minor OSX compilation update

This commit is contained in:
brunoherbelin
2020-10-31 19:21:21 +01:00
parent 8ef79a6dbd
commit 44901b1e78
4 changed files with 14 additions and 15 deletions

View File

@@ -33,7 +33,7 @@ GlmToolkit::AxisAlignedBoundingBox::AxisAlignedBoundingBox() {
mMax = glm::vec3(-1.f);
}
void GlmToolkit::AxisAlignedBoundingBox::extend(const glm::vec3& point) // TODO why ref to point?
void GlmToolkit::AxisAlignedBoundingBox::extend(const glm::vec3& point)
{
if (isNull()) {
mMin = point;