From 6142c794076c5750e9fcd42cf21faf7dc7be14f7 Mon Sep 17 00:00:00 2001 From: Stephane Del Pino <stephane.delpino44@gmail.com> Date: Sat, 18 Apr 2020 13:38:47 +0200 Subject: [PATCH] Update formating (using clang-format-9) --- src/algebra/TinyMatrix.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/algebra/TinyMatrix.hpp b/src/algebra/TinyMatrix.hpp index 9ca3746c7..7a67fe0c1 100644 --- a/src/algebra/TinyMatrix.hpp +++ b/src/algebra/TinyMatrix.hpp @@ -20,7 +20,8 @@ class TinyMatrix static_assert((N > 0), "TinyMatrix size must be strictly positive"); PUGS_FORCEINLINE - constexpr size_t _index(const size_t& i, const size_t& j) const noexcept // LCOV_EXCL_LINE (due to forced inline) + constexpr size_t + _index(const size_t& i, const size_t& j) const noexcept // LCOV_EXCL_LINE (due to forced inline) { return i * N + j; } -- GitLab