From 969c59275430163f74bc1b8190595f3d977bbba5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dennis=20Gl=C3=A4ser?= <dennis.glaeser@iws.uni-stuttgart.de> Date: Tue, 22 May 2018 11:23:06 +0200 Subject: [PATCH] [geomechanics][veloutput] respect dumux conventions --- dumux/geomechanics/velocityoutput.hh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dumux/geomechanics/velocityoutput.hh b/dumux/geomechanics/velocityoutput.hh index dd4571eb49..81ed8f04ad 100644 --- a/dumux/geomechanics/velocityoutput.hh +++ b/dumux/geomechanics/velocityoutput.hh @@ -40,10 +40,12 @@ public: GeomechanicsVelocityOutput(Args&&... args) {} //! Output is currently disabled (not implemented) - static constexpr bool enableOutput() { return false; } + static constexpr bool enableOutput() + { return false; } //! There is always only one solid phase - static constexpr int numPhaseVelocities() { return 1; } + static constexpr int numPhaseVelocities() + { return 1; } //! Returns the name of phase for which velocity is computed static std::string phaseName(int phaseIdx) -- GitLab