From d9392f9e557950e0160b6d4ba1c44035649d8e41 Mon Sep 17 00:00:00 2001 From: Eugene Zhulenev Date: Fri, 2 Nov 2018 14:51:35 -0700 Subject: [PATCH] Fix code format --- Eigen/src/Core/util/ReshapedHelper.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Eigen/src/Core/util/ReshapedHelper.h b/Eigen/src/Core/util/ReshapedHelper.h index b6733b6bc..412432132 100644 --- a/Eigen/src/Core/util/ReshapedHelper.h +++ b/Eigen/src/Core/util/ReshapedHelper.h @@ -39,10 +39,9 @@ inline Index get_runtime_reshape_size(AutoSize_t /*size*/, Index other, Index to return total/other; } -template -struct get_compiletime_reshape_order -{ - enum { value = Order==AutoOrder ? Flags & RowMajorBit : Order }; +template +struct get_compiletime_reshape_order { + enum { value = Order == AutoOrder ? Flags & RowMajorBit : Order }; }; }