From 4ded1e86a4a1814f4295e3fed2766b67ea96ae15 Mon Sep 17 00:00:00 2001 From: kronbichler Date: Fri, 30 Sep 2011 09:30:14 +0000 Subject: [PATCH] Work around warning with Intel compiler. git-svn-id: https://svn.dealii.org/trunk@24479 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/include/deal.II/fe/fe_values.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/deal.II/include/deal.II/fe/fe_values.h b/deal.II/include/deal.II/fe/fe_values.h index 02b9773df2..a73384f29f 100644 --- a/deal.II/include/deal.II/fe/fe_values.h +++ b/deal.II/include/deal.II/fe/fe_values.h @@ -4154,6 +4154,9 @@ namespace FEValuesViews } } } + // should not end up here + Assert (false, ExcInternalError()); + return curl_type(); } template -- 2.39.5