From b8b86947861f95e30622793be15a2b0e9bd5ddde Mon Sep 17 00:00:00 2001 From: Stephane Del Pino <stephane.delpino44@gmail.com> Date: Mon, 15 Oct 2018 22:45:50 +0200 Subject: [PATCH] Fix warning --- src/mesh/CellType.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mesh/CellType.hpp b/src/mesh/CellType.hpp index 586421006..d3aa4578f 100644 --- a/src/mesh/CellType.hpp +++ b/src/mesh/CellType.hpp @@ -28,6 +28,7 @@ std::string_view name(const CellType& cell_type) case CellType::Pyramid: return "pyramid"; case CellType::Prism: return "prism"; case CellType::Hexahedron: return "hexahedron"; + default: return "unknown cell type"; } } -- GitLab