Skip to content
Snippets Groups Projects
Commit 9ec36d04 authored by René Fritze's avatar René Fritze
Browse files

[all] misc. cleanup

parent ad106321
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,6 @@ ...@@ -5,7 +5,6 @@
#include <dune/common/exceptions.hh> #include <dune/common/exceptions.hh>
#include <dune/common/static_assert.hh> #include <dune/common/static_assert.hh>
#include <dune/stuff/common/parameter/tree.hh> #include <dune/stuff/common/parameter/tree.hh>
#include <dune/stuff/common/color.hh> #include <dune/stuff/common/color.hh>
...@@ -63,27 +62,6 @@ public: ...@@ -63,27 +62,6 @@ public:
<< " please provide at least as many '_values' as subdomains given by '_numElements'!"); << " 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 = "") static Dune::ParameterTree createSampleDescription(const std::string subName = "")
{ {
Dune::ParameterTree description; Dune::ParameterTree description;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment