mathlib: vs2013 compatibility

This commit is contained in:
Eric Wasylishen 2017-04-20 01:21:27 -06:00
parent d374a01b5a
commit e0d555ffc8
1 changed files with 3 additions and 3 deletions

View File

@ -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>