From: wolf Date: Tue, 25 Feb 2003 21:25:13 +0000 (+0000) Subject: Return something, even if the function is bogus, to avoid the warning. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e4d760f3329fcd7264a925885893df5dd0dec529;p=dealii-svn.git Return something, even if the function is bogus, to avoid the warning. git-svn-id: https://svn.dealii.org/trunk@7248 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/fe/fe_nedelec.cc b/deal.II/deal.II/source/fe/fe_nedelec.cc index 700a0f048f..8ad5f262bf 100644 --- a/deal.II/deal.II/source/fe/fe_nedelec.cc +++ b/deal.II/deal.II/source/fe/fe_nedelec.cc @@ -281,6 +281,7 @@ FE_Nedelec<1>::shape_value_component (const unsigned int , const unsigned int ) const { Assert (false, ExcNotImplemented()); + return 0.; } #endif @@ -428,6 +429,7 @@ FE_Nedelec<1>::shape_grad_component (const unsigned int , const unsigned int ) const { Assert (false, ExcNotImplemented()); + return 0.; } #endif @@ -569,6 +571,7 @@ FE_Nedelec<1>::shape_grad_grad_component (const unsigned int , const unsigned int ) const { Assert (false, ExcNotImplemented()); + return 0.; } #endif