From 64f9f4def89c9bf0a0f667bdd60e3e97c4314ceb Mon Sep 17 00:00:00 2001 From: zlyfunction Date: Wed, 18 Oct 2023 23:22:33 -0400 Subject: [PATCH] clean compile issues --- src/wmtk/autogen/local_switch_tuple.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/wmtk/autogen/local_switch_tuple.cpp b/src/wmtk/autogen/local_switch_tuple.cpp index d3ab39dda7..e3847f7ad1 100644 --- a/src/wmtk/autogen/local_switch_tuple.cpp +++ b/src/wmtk/autogen/local_switch_tuple.cpp @@ -10,6 +10,7 @@ Tuple local_switch_tuple(PrimitiveType mesh_type, const Tuple& t, PrimitiveType case PrimitiveType::Tetrahedron: return tet_mesh::local_switch_tuple(t, pt); case PrimitiveType::Edge: return edge_mesh::local_switch_tuple(t, pt); case PrimitiveType::Vertex: throw("not implemented"); + default: break; } return Tuple(); }