]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Silence bogus unused-parameters|variables warnings 809/head
authorMatthias Maier <tamiko@43-1.org>
Wed, 15 Apr 2015 22:58:28 +0000 (00:58 +0200)
committerMatthias Maier <tamiko@43-1.org>
Wed, 15 Apr 2015 22:58:28 +0000 (00:58 +0200)
include/deal.II/lac/swappable_vector.templates.h
include/deal.II/lac/vector.templates.h
source/base/subscriptor.cc
source/base/thread_management.cc
source/dofs/dof_handler_policy.cc
source/dofs/dof_tools.cc

index 8ac448630affca3493f29d976a8209b8ecf7d1cb..4f48e92c9f1c73c34d3d61516e138745fb97bb00 100644 (file)
@@ -1,6 +1,6 @@
 // ---------------------------------------------------------------------
 //
-// Copyright (C) 2000 - 2014 by the deal.II authors
+// Copyright (C) 2000 - 2015 by the deal.II authors
 //
 // This file is part of the deal.II library.
 //
@@ -183,6 +183,8 @@ void SwappableVector<number>::alert ()
 template <typename number>
 void SwappableVector<number>::reload_vector (const bool set_flag)
 {
+  (void)set_flag;
+
   Assert (filename != "", ExcInvalidFilename (filename));
   Assert (this->size() == 0, ExcSizeNonzero());
 
@@ -191,9 +193,7 @@ void SwappableVector<number>::reload_vector (const bool set_flag)
   tmp_in.close ();
 
 #ifdef DEAL_II_WITH_THREADS
-  // release the lock that was
-  // acquired by the calling
-  // functions
+  // release the lock that was acquired by the calling functions
 
   // set the flag if so required
   if (set_flag)
index 2d46fd10dd7b76f9b189c650e4505f6d149be0c6..bcfe8b6190478fb627e3a7ba3ebc7a620a587bbe 100644 (file)
@@ -1,6 +1,6 @@
 // ---------------------------------------------------------------------
 //
-// Copyright (C) 1999 - 2014 by the deal.II authors
+// Copyright (C) 1999 - 2015 by the deal.II authors
 //
 // This file is part of the deal.II library.
 //
@@ -1186,6 +1186,8 @@ namespace internal
                      ResultType        &result,
                      const int          depth = -1)
     {
+      (void)depth;
+
       if (vec_size <= 4096)
         {
           // the vector is short enough so we perform the summation. first
index 2a44b7963283765d192eae2bb8dd161703f4c6b2..c3a61421ba7af70a190e5432ca843ae97189b514 100644 (file)
@@ -1,6 +1,6 @@
 // ---------------------------------------------------------------------
 //
-// Copyright (C) 1998 - 2014 by the deal.II authors
+// Copyright (C) 1998 - 2015 by the deal.II authors
 //
 // This file is part of the deal.II library.
 //
@@ -24,6 +24,7 @@
 DEAL_II_NAMESPACE_OPEN
 
 
+#ifdef DEBUG
 namespace
 {
 // create a lock that might be used to control subscription to and
@@ -37,6 +38,7 @@ namespace
 // <subscriptor.h> file).
   Threads::Mutex subscription_lock;
 }
+#endif
 
 
 static const char *unknown_subscriber = "unknown subscriber";
index 78ad081df15be3438032c7615cf796b769e45740..c2c0aad9ac7574e70dc3ff9defe2b0f60b9f87f4 100644 (file)
@@ -1,6 +1,6 @@
 // ---------------------------------------------------------------------
 //
-// Copyright (C) 2000 - 2014 by the deal.II authors
+// Copyright (C) 2000 - 2015 by the deal.II authors
 //
 // This file is part of the deal.II library.
 //
@@ -153,6 +153,7 @@ namespace Threads
                               const char *,
                               void *)
   {
+    (void)count;
     Assert (count == 1, ExcBarrierSizeNotUseful(count));
   }
 
index 99bbb4bd8da7e2238113aab937dddd400ea2e9cb..3d084de04aa91c0e8cd975c9bc7afd550f30bcc0 100644 (file)
@@ -1,6 +1,6 @@
 // ---------------------------------------------------------------------
 //
-// Copyright (C) 1998 - 2014 by the deal.II authors
+// Copyright (C) 1998 - 2015 by the deal.II authors
 //
 // This file is part of the deal.II library.
 //
@@ -2401,6 +2401,9 @@ namespace internal
       renumber_dofs (const std::vector<dealii::types::global_dof_index> &new_numbers,
                      dealii::DoFHandler<dim,spacedim> &dof_handler) const
       {
+        (void)new_numbers;
+        (void)dof_handler;
+
         Assert (new_numbers.size() == dof_handler.locally_owned_dofs().n_elements(),
                 ExcInternalError());
 
index 0f845024e92a35bba3af75f35bb3e33107ef790a..6975b7e350df80dca205810c720be8675ea5b73c 100644 (file)
@@ -1407,6 +1407,7 @@ namespace DoFTools
       = *std::max_element (target_component.begin(),
                            target_component.end());
     const unsigned int n_target_components = max_component + 1;
+    (void)n_target_components; // silence possible warning about unused variable
 
     AssertDimension (dofs_per_component.size(), n_target_components);
 
@@ -1499,6 +1500,8 @@ namespace DoFTools
           = *std::max_element (target_block.begin(),
                                target_block.end());
         const unsigned int n_target_blocks = max_block + 1;
+        (void)n_target_blocks; // silence possible warning about unused variable
+
         const unsigned int n_blocks = fe.n_blocks();
 
         AssertDimension (dofs_per_block.size(), n_target_blocks);

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.