From bdade121df648263585cc1eb11922ee79f810c4d Mon Sep 17 00:00:00 2001 From: Christoph Lehmann <christoph.lehmann@ufz.de> Date: Thu, 18 Aug 2016 09:07:07 +0200 Subject: [PATCH] [MaL] fixed indentation --- MathLib/LinAlg/LinAlg.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/MathLib/LinAlg/LinAlg.h b/MathLib/LinAlg/LinAlg.h index eb1b92f582d..dcf71ac1a41 100644 --- a/MathLib/LinAlg/LinAlg.h +++ b/MathLib/LinAlg/LinAlg.h @@ -88,14 +88,14 @@ template<typename MatrixOrVector> double norm(MatrixOrVector const& x, MathLib::VecNormType type) { switch (type) { - case MathLib::VecNormType::NORM1: - return norm1(x); - case MathLib::VecNormType::NORM2: - return norm2(x); - case MathLib::VecNormType::INFINITY_N: - return normMax(x); - default: - OGS_FATAL("Invalid norm type given."); + case MathLib::VecNormType::NORM1: + return norm1(x); + case MathLib::VecNormType::NORM2: + return norm2(x); + case MathLib::VecNormType::INFINITY_N: + return normMax(x); + default: + OGS_FATAL("Invalid norm type given."); } } -- GitLab