From 63b21e199e2a5a836dcc83142c2ab2ac839b4405 Mon Sep 17 00:00:00 2001 From: Oliver Sander <sander@dune-project.org> Date: Sat, 10 Oct 2009 20:26:02 +0000 Subject: [PATCH] bugfix: add missing break in switch statement [[Imported from SVN: r5629]] --- common/geometrytype.hh | 1 + 1 file changed, 1 insertion(+) diff --git a/common/geometrytype.hh b/common/geometrytype.hh index ede126cb8..ddedd0301 100644 --- a/common/geometrytype.hh +++ b/common/geometrytype.hh @@ -170,6 +170,7 @@ namespace Dune { break; case prism : s << "prism"; + break; default : s << "invalid geometry type"; } -- GitLab