Skip to content

Commit cf19478

Browse files
committed
add missing stack include
1 parent 1c3de75 commit cf19478

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/geode/mesh/core/solid_mesh.cpp

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323

2424
#include <geode/mesh/core/solid_mesh.h>
2525

26+
#include <stack>
27+
2628
#include <absl/container/flat_hash_set.h>
2729

2830
#include <bitsery/brief_syntax/array.h>
@@ -377,10 +379,10 @@ namespace geode
377379
public:
378380
explicit Impl( SolidMesh& solid )
379381
: polyhedron_around_vertex_(
380-
solid.vertex_attribute_manager()
381-
.template find_or_create_attribute< VariableAttribute,
382-
PolyhedronVertex >(
383-
"polyhedron_around_vertex", PolyhedronVertex{} ) ),
382+
solid.vertex_attribute_manager()
383+
.template find_or_create_attribute< VariableAttribute,
384+
PolyhedronVertex >(
385+
"polyhedron_around_vertex", PolyhedronVertex{} ) ),
384386
polyhedra_around_vertex_(
385387
solid.vertex_attribute_manager()
386388
.template find_or_create_attribute< VariableAttribute,

0 commit comments

Comments
 (0)