mathlib: vs2013 compatibility
This commit is contained in:
parent
d374a01b5a
commit
e0d555ffc8
|
|
@ -735,9 +735,9 @@ public:
|
|||
return res_vec;
|
||||
}
|
||||
|
||||
octree_t(const aabb3 &box)
|
||||
: m_nodes { octree_node_t<T>(box, 0) }
|
||||
{}
|
||||
octree_t(const aabb3 &box) {
|
||||
this->m_nodes.push_back(octree_node_t<T>(box, 0));
|
||||
}
|
||||
};
|
||||
|
||||
template <typename T>
|
||||
|
|
|
|||
Loading…
Reference in New Issue