]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Fix accidentally nonsensical error message
authorbangerth <bangerth@0785d39b-7218-0410-832d-ea1e28bc413d>
Sun, 3 Sep 2006 22:12:14 +0000 (22:12 +0000)
committerbangerth <bangerth@0785d39b-7218-0410-832d-ea1e28bc413d>
Sun, 3 Sep 2006 22:12:14 +0000 (22:12 +0000)
git-svn-id: https://svn.dealii.org/trunk@13824 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/deal.II/include/dofs/dof_accessor.templates.h

index 552a58701c1d1766ebe1a5c624af178e73edb56a..feb66d3a35aa86c6ad23a25f79ffaae0e3661ffc 100644 (file)
@@ -264,7 +264,7 @@ const FiniteElement<DH::dimension> &
 DoFAccessor<dim,DH>::get_fe (const unsigned int fe_index) const
 {
   Assert (fe_index_is_active (fe_index) == true,
-         ExcMessage ("This message can only be called for active fe indices"));
+         ExcMessage ("This function can only be called for active fe indices"));
   
   return this->dof_handler->get_fe()[fe_index];
 }
@@ -277,7 +277,7 @@ const FiniteElement<1> &
 DoFAccessor<1,::DoFHandler<1> >::get_fe (const unsigned int fe_index) const
 {
   Assert (fe_index_is_active (fe_index) == true,
-         ExcMessage ("This message can only be called for active fe indices"));  
+         ExcMessage ("This function can only be called for active fe indices"));  
   return this->dof_handler->get_fe();
 }
 
@@ -289,7 +289,7 @@ const FiniteElement<2> &
 DoFAccessor<1,::DoFHandler<2> >::get_fe (const unsigned int fe_index) const
 {
   Assert (fe_index_is_active (fe_index) == true,
-         ExcMessage ("This message can only be called for active fe indices"));  
+         ExcMessage ("This function can only be called for active fe indices"));  
   return this->dof_handler->get_fe();
 }
 
@@ -301,7 +301,7 @@ const FiniteElement<3> &
 DoFAccessor<1,::DoFHandler<3> >::get_fe (const unsigned int fe_index) const
 {
   Assert (fe_index_is_active (fe_index) == true,
-         ExcMessage ("This message can only be called for active fe indices"));  
+         ExcMessage ("This function can only be called for active fe indices"));  
   return this->dof_handler->get_fe();
 }
 
@@ -313,7 +313,7 @@ const FiniteElement<2> &
 DoFAccessor<2,::DoFHandler<2> >::get_fe (const unsigned int fe_index) const
 {
   Assert (fe_index_is_active (fe_index) == true,
-         ExcMessage ("This message can only be called for active fe indices"));  
+         ExcMessage ("This function can only be called for active fe indices"));  
   return this->dof_handler->get_fe();
 }
 
@@ -325,7 +325,7 @@ const FiniteElement<3> &
 DoFAccessor<2,::DoFHandler<3> >::get_fe (const unsigned int fe_index) const
 {
   Assert (fe_index_is_active (fe_index) == true,
-         ExcMessage ("This message can only be called for active fe indices"));  
+         ExcMessage ("This function can only be called for active fe indices"));  
   return this->dof_handler->get_fe();
 }
 
@@ -337,7 +337,7 @@ const FiniteElement<3> &
 DoFAccessor<3,::DoFHandler<3> >::get_fe (const unsigned int fe_index) const
 {
   Assert (fe_index_is_active (fe_index) == true,
-         ExcMessage ("This message can only be called for active fe indices"));  
+         ExcMessage ("This function can only be called for active fe indices"));  
   return this->dof_handler->get_fe();
 }
 

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.