From c4fdb6a264cc0fd22c356f08f3f56e217cc77118 Mon Sep 17 00:00:00 2001 From: Janis Born Date: Mon, 31 Jul 2017 10:32:11 +0200 Subject: [PATCH] use correct ConnectivityTag typedef for PolyMeshT --- src/OpenMesh/Core/Mesh/PolyMeshT.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/OpenMesh/Core/Mesh/PolyMeshT.hh b/src/OpenMesh/Core/Mesh/PolyMeshT.hh index 40b772cf..c4e89dac 100644 --- a/src/OpenMesh/Core/Mesh/PolyMeshT.hh +++ b/src/OpenMesh/Core/Mesh/PolyMeshT.hh @@ -104,7 +104,7 @@ public: /// Determine whether this is a PolyMeshT or TriMeshT (This function does not check the per face vertex count! It only checks if the datatype is PolyMeshT or TriMeshT) static constexpr bool is_polymesh() { return true; } static constexpr bool is_trimesh() { return false; } - using ConnectivityTag = TriConnectivityTag; + using ConnectivityTag = PolyConnectivityTag; enum { IsPolyMesh = 1 }; enum { IsTriMesh = 0 }; //@}