diff --git a/Framework/Kernel/src/Matrix.cpp b/Framework/Kernel/src/Matrix.cpp
index 5f9ced0d84bb7fb637229c751e16677cc213adb2..aa17baa85a2caf50d6ea4c0664254971ebace23b 100644
--- a/Framework/Kernel/src/Matrix.cpp
+++ b/Framework/Kernel/src/Matrix.cpp
@@ -215,8 +215,9 @@ Matrix<T> &Matrix<T>::operator=(const Matrix<T> &A)
 }
 
 template <typename T>
-Matrix<T>::Matrix(Matrix<T> &&other) noexcept
-    : nx(other.nx), ny(other.ny), V(other.V) {
+Matrix<T>::Matrix(Matrix<T> &&other) noexcept : nx(other.nx),
+                                                ny(other.ny),
+                                                V(other.V) {
   other.nx = 0;
   other.ny = 0;
   other.V = nullptr;