Skip to content
Snippets Groups Projects
Commit d429e225 authored by Elias Pipping's avatar Elias Pipping Committed by Elias Pipping
Browse files

Fix: use ref

parent 9ea0e3f4
No related branches found
No related tags found
No related merge requests found
......@@ -32,7 +32,7 @@ template <int dim> class EllipticEnergy {
}
// returns false if the direction is tangential
bool descentDirection(SmallVector const x, SmallVector &ret) const {
bool descentDirection(SmallVector const &x, SmallVector &ret) const {
// Check the squared norm rather than each component because
// complementaryProjection() divides by it
if (x.two_norm2() == 0.0) {
......
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