]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Fix unused variable warnings in step-23
authorMatthias Maier <tamiko@43-1.org>
Wed, 15 Mar 2017 19:04:45 +0000 (14:04 -0500)
committerMatthias Maier <tamiko@43-1.org>
Wed, 15 Mar 2017 19:16:55 +0000 (14:16 -0500)
examples/step-23/step-23.cc

index ee15a4587ec620ebb66e044a452eaa860989d00b..03089ec69c2373dab4c80c995a5516e478b67afd 100644 (file)
@@ -185,7 +185,8 @@ namespace Step23
   double InitialValuesU<dim>::value (const Point<dim>  &/*p*/,
                                      const unsigned int component) const
   {
-    Assert (component == 0, ExcInternalError());
+    (void) component;
+    Assert(component == 0, ExcIndexRange(component, 0, 1));
     return 0;
   }
 
@@ -195,7 +196,8 @@ namespace Step23
   double InitialValuesV<dim>::value (const Point<dim>  &/*p*/,
                                      const unsigned int component) const
   {
-    Assert (component == 0, ExcInternalError());
+    (void) component;
+    Assert(component == 0, ExcIndexRange(component, 0, 1));
     return 0;
   }
 
@@ -219,7 +221,8 @@ namespace Step23
   double RightHandSide<dim>::value (const Point<dim>  &/*p*/,
                                     const unsigned int component) const
   {
-    Assert (component == 0, ExcInternalError());
+    (void) component;
+    Assert(component == 0, ExcIndexRange(component, 0, 1));
     return 0;
   }
 
@@ -257,7 +260,8 @@ namespace Step23
   double BoundaryValuesU<dim>::value (const Point<dim> &p,
                                       const unsigned int component) const
   {
-    Assert (component == 0, ExcInternalError());
+    (void) component;
+    Assert(component == 0, ExcIndexRange(component, 0, 1));
 
     if ((this->get_time() <= 0.5) &&
         (p[0] < 0) &&
@@ -274,7 +278,8 @@ namespace Step23
   double BoundaryValuesV<dim>::value (const Point<dim> &p,
                                       const unsigned int component) const
   {
-    Assert (component == 0, ExcInternalError());
+    (void) component;
+    Assert(component == 0, ExcIndexRange(component, 0, 1));
 
     if ((this->get_time() <= 0.5) &&
         (p[0] < 0) &&

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.