From 034ec40183cb65ef113e3c2256cd2b192eaf8dad Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Sun, 12 Apr 2020 20:06:36 -0400 Subject: [PATCH] Fix more link requests --- include/deal.II/lac/vector_memory.h | 2 +- source/base/data_out_base.cc | 17 ++++++++--------- 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/include/deal.II/lac/vector_memory.h b/include/deal.II/lac/vector_memory.h index eabcada2524f..292285441972 100644 --- a/include/deal.II/lac/vector_memory.h +++ b/include/deal.II/lac/vector_memory.h @@ -222,7 +222,7 @@ class VectorMemory : public Subscriptor 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 05b52d9d56b6..6bd928eeb52a 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) {