From: Daniel Arndt Date: Mon, 13 Apr 2020 00:06:36 +0000 (-0400) Subject: Fix more link requests X-Git-Tag: v9.2.0-rc1~207^2~10 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=034ec40183cb65ef113e3c2256cd2b192eaf8dad;p=dealii.git Fix more link requests --- diff --git a/include/deal.II/lac/vector_memory.h b/include/deal.II/lac/vector_memory.h index eabcada252..2922854419 100644 --- a/include/deal.II/lac/vector_memory.h +++ b/include/deal.II/lac/vector_memory.h @@ -222,7 +222,7 @@ public: Pointer(VectorMemory &mem); /** - * Destructor, automatically releasing the vector from the memory #pool. + * Destructor, automatically releasing the vector from the memory pool. */ ~Pointer() = default; }; diff --git a/source/base/data_out_base.cc b/source/base/data_out_base.cc index 05b52d9d56..6bd928eeb5 100644 --- a/source/base/data_out_base.cc +++ b/source/base/data_out_base.cc @@ -235,6 +235,14 @@ namespace DataOutBase operator<(const EpsCell2d &) const; }; + bool + EpsCell2d::operator<(const EpsCell2d &e) const + { + // note the "wrong" order in which we sort the elements + return depth > e.depth; + } + + /** * This is a helper function for the write_gmv() function. There, the data @@ -2125,15 +2133,6 @@ namespace DataOutBase - bool - EpsCell2d::operator<(const EpsCell2d &e) const - { - // note the "wrong" order in which we sort the elements - return depth > e.depth; - } - - - void EpsFlags::declare_parameters(ParameterHandler &prm) {