Skip to content
Snippets Groups Projects
Commit 6142c794 authored by Stéphane Del Pino's avatar Stéphane Del Pino
Browse files

Update formating (using clang-format-9)

parent 7784fd5e
Branches
Tags
No related merge requests found
...@@ -20,7 +20,8 @@ class TinyMatrix ...@@ -20,7 +20,8 @@ class TinyMatrix
static_assert((N > 0), "TinyMatrix size must be strictly positive"); static_assert((N > 0), "TinyMatrix size must be strictly positive");
PUGS_FORCEINLINE 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; return i * N + j;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment