]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Use default copy constructors.
authorDavid Wells <wellsd2@rpi.edu>
Sat, 27 Jan 2018 18:18:54 +0000 (13:18 -0500)
committerDavid Wells <wellsd2@rpi.edu>
Sat, 27 Jan 2018 19:33:22 +0000 (14:33 -0500)
This was found by cppcheck.

include/deal.II/base/synchronous_iterator.h
include/deal.II/hp/q_collection.h

index 82d1d069af0b56e4551a6c550dfb1188628c58db..784a17e72a5fa54d1b8f827bd96856c0a41ff235 100644 (file)
@@ -55,11 +55,6 @@ struct SynchronousIterators
    */
   SynchronousIterators (const Iterators &i);
 
-  /**
-   * Copy constructor.
-   */
-  SynchronousIterators (const SynchronousIterators &i);
-
   /**
    * Dereference const operator. Returns a const reference to the iterators
    * represented by the current class.
@@ -90,15 +85,6 @@ SynchronousIterators (const Iterators &i)
 {}
 
 
-template <typename Iterators>
-inline
-SynchronousIterators<Iterators>::
-SynchronousIterators (const SynchronousIterators &i)
-  :
-  iterators (i.iterators)
-{}
-
-
 
 template <typename Iterators>
 inline
index def53ed2553e04e6c5c4a50cca96dd4dc9c4f40f..ff96589542d3d6f704eb16d61cbe34f86456a8b9 100644 (file)
@@ -60,11 +60,6 @@ namespace hp
      */
     explicit QCollection (const Quadrature<dim> &quadrature);
 
-    /**
-     * Copy constructor.
-     */
-    QCollection (const QCollection<dim> &q_collection);
-
     /**
      * Adds a new quadrature rule to the QCollection. In most cases, you will
      * want to add quadrature rules in the same order as the elements were
@@ -186,28 +181,6 @@ namespace hp
 
 
 
-  template <int dim>
-  inline
-  QCollection<dim>::
-  QCollection (const QCollection<dim> &q_collection)
-    :
-    Subscriptor (),
-    // copy the array
-    // of shared
-    // pointers. nothing
-    // bad should
-    // happen -- they
-    // simply all point
-    // to the same
-    // objects, and the
-    // last one to die
-    // will delete the
-    // mappings
-    quadratures (q_collection.quadratures)
-  {}
-
-
-
   template <int dim>
   inline
   std::size_t

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.