Use std::array explicitly in child_pattern
Otherwise, it's assumed to be an initializer_list.
This commit is contained in:
parent
3ae3ae7e6d
commit
d61450aacb
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@
|
|||
constexpr int max_contained_types = 16;
|
||||
constexpr int max_octree_depth = 2;
|
||||
|
||||
constexpr auto child_pattern = {
|
||||
constexpr std::array child_pattern = {
|
||||
glm::vec3(+1, -1, -1),
|
||||
glm::vec3(+1, -1, +1),
|
||||
glm::vec3(+1, +1, -1),
|
||||
|
|
Loading…
Add table
Reference in a new issue