From ed399679e97afd68250d14d335d18d880fc98965 Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Wed, 25 Sep 2019 16:53:20 -0700 Subject: [PATCH] astyle Signed-off-by: Jesse Vincent --- src/kaleidoscope/MatrixAddr.h | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/kaleidoscope/MatrixAddr.h b/src/kaleidoscope/MatrixAddr.h index cd47ab2f..ae2b7c1c 100644 --- a/src/kaleidoscope/MatrixAddr.h +++ b/src/kaleidoscope/MatrixAddr.h @@ -68,12 +68,11 @@ class MatrixAddr { template explicit constexpr MatrixAddr(const MatrixAddr__ &other) - : MatrixAddr(other.row(), other.col()) - { - static_assert(MatrixAddr__::rows <= ThisType::rows, - "Matrix type conversion failed. Source type must not have greater row size than target type"); - static_assert(MatrixAddr__::cols <= ThisType::cols, - "Matrix type conversion failed. Source type must not have greater col size than target type"); + : MatrixAddr(other.row(), other.col()) { + static_assert(MatrixAddr__::rows <= ThisType::rows, + "Matrix type conversion failed. Source type must not have greater row size than target type"); + static_assert(MatrixAddr__::cols <= ThisType::cols, + "Matrix type conversion failed. Source type must not have greater col size than target type"); } constexpr uint8_t row() const {