Skip to content

Commit

Permalink
Fix more link requests
Browse files Browse the repository at this point in the history
  • Loading branch information
masterleinad committed Apr 17, 2020
1 parent e8f5dbc commit 034ec40
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion include/deal.II/lac/vector_memory.h
Expand Up @@ -222,7 +222,7 @@ class VectorMemory : public Subscriptor
Pointer(VectorMemory<VectorType> &mem);

/**
* Destructor, automatically releasing the vector from the memory #pool.
* Destructor, automatically releasing the vector from the memory pool.
*/
~Pointer() = default;
};
Expand Down
17 changes: 8 additions & 9 deletions source/base/data_out_base.cc
Expand Up @@ -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
Expand Down Expand Up @@ -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)
{
Expand Down

0 comments on commit 034ec40

Please sign in to comment.