From: Wolfgang Bangerth Date: Mon, 24 Oct 2005 14:04:19 +0000 (+0000) Subject: Don't rely on obscure language features, since it apparently makes some X-Git-Tag: v8.0.0~12950 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=88afcf6b4ba4469c0e9ef60397f72efa3803f873;p=dealii.git Don't rely on obscure language features, since it apparently makes some compilers go bonkers. git-svn-id: https://svn.dealii.org/trunk@11653 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/fe/fe_raviart_thomas_nodal.cc b/deal.II/deal.II/source/fe/fe_raviart_thomas_nodal.cc index 60e087fed0..93628517a5 100644 --- a/deal.II/deal.II/source/fe/fe_raviart_thomas_nodal.cc +++ b/deal.II/deal.II/source/fe/fe_raviart_thomas_nodal.cc @@ -377,18 +377,17 @@ FE_RaviartThomasNodal::initialize_support_points (const unsigned int deg) for (unsigned int d=0;d quadrature (dim == 1 ? QAnisotropic(high) : (dim == 2 ? QAnisotropic(((d==0) ? low : high), ((d==1) ? low : high)) : - (dim == 3 ? - QAnisotropic(((d==0) ? low : high), - ((d==1) ? low : high), - ((d==2) ? low : high)) - : - throw ExcNotImplemented(), /*dummy=*/QAnisotropic(high)))); + QAnisotropic(((d==0) ? low : high), + ((d==1) ? low : high), + ((d==2) ? low : high)))); for (unsigned int k=0;kgeneralized_support_points[current++] = quadrature.point(k);