Skip to content

Commit 4d0a16f

Browse files
committed
Fix bounding box vector3 missing "::"
1 parent e39da1a commit 4d0a16f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/BoundingBox.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class BoundingBox : public ::BoundingBox {
1414
* Set the bounding box to default: min (0, 0, 0) and max (0, 0, 0).
1515
*/
1616
BoundingBox() {
17-
set(Vector3{ 0, 0, 0 }, Vector3{ 0, 0, 0 });
17+
set(::Vector3{ 0, 0, 0 }, ::Vector3{ 0, 0, 0 });
1818
}
1919

2020
/*

0 commit comments

Comments
 (0)