From 9ec36d047113fddeb18709ac875288412a31ef90 Mon Sep 17 00:00:00 2001
From: Rene Milk <rene.milk@uni-muenster.de>
Date: Thu, 14 Feb 2013 15:05:03 +0100
Subject: [PATCH] [all] misc. cleanup

---
 dune/stuff/function/checkerboard.hh | 22 ----------------------
 1 file changed, 22 deletions(-)

diff --git a/dune/stuff/function/checkerboard.hh b/dune/stuff/function/checkerboard.hh
index 97c46e0ad..4cc754bba 100644
--- a/dune/stuff/function/checkerboard.hh
+++ b/dune/stuff/function/checkerboard.hh
@@ -5,7 +5,6 @@
 
 #include <dune/common/exceptions.hh>
 #include <dune/common/static_assert.hh>
-
 #include <dune/stuff/common/parameter/tree.hh>
 #include <dune/stuff/common/color.hh>
 
@@ -63,27 +62,6 @@ public:
                       << " please provide at least as many '_values' as subdomains given by '_numElements'!");
   }
 
-  Checkerboard(const ThisType& _other)
-    : lowerLeft_(_other.lowerLeft_)
-    , upperRight_(_other.upperRight_)
-    , numElements_(_other.numElements_)
-    , values_(_other.values_)
-    , name_(_other.name_)
-  {
-  }
-
-  ThisType& operator=(const ThisType& other)
-  {
-    if (this != &other) {
-      lowerLeft_   = other.lowerLeft();
-      upperRight_  = other.upperRight();
-      numElements_ = other.numElements();
-      values_      = other.values();
-      name_        = other.name();
-    }
-    return this;
-  }
-
   static Dune::ParameterTree createSampleDescription(const std::string subName = "")
   {
     Dune::ParameterTree description;
-- 
GitLab