aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/util/ReshapedHelper.h
diff options
context:
space:
mode:
authorGravatar Eugene Zhulenev <ezhulenev@google.com>2018-11-02 14:51:35 -0700
committerGravatar Eugene Zhulenev <ezhulenev@google.com>2018-11-02 14:51:35 -0700
commitd9392f9e557950e0160b6d4ba1c44035649d8e41 (patch)
treee28a83822ce71bc05a1afc85ba638dac5e306049 /Eigen/src/Core/util/ReshapedHelper.h
parent118520f04a84b6246a1fb1c6db4ce99290a79956 (diff)
Fix code format
Diffstat (limited to 'Eigen/src/Core/util/ReshapedHelper.h')
-rw-r--r--Eigen/src/Core/util/ReshapedHelper.h7
1 files 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 <int Flags, int Order>
-struct get_compiletime_reshape_order
-{
- enum { value = Order==AutoOrder ? Flags & RowMajorBit : Order };
+template<int Flags, int Order>
+struct get_compiletime_reshape_order {
+ enum { value = Order == AutoOrder ? Flags & RowMajorBit : Order };
};
}