@@ -98,7 +98,7 @@ template <typename EigenType,
98
98
struct check_swap_impl ;
99
99
100
100
template <typename MatType>
101
- struct check_swap_impl <MatType, Eigen::MatrixBase<MatType> >
101
+ struct check_swap_impl <MatType, Eigen::MatrixBase<MatType>>
102
102
: check_swap_impl_matrix<MatType> {};
103
103
104
104
template <typename MatType>
@@ -127,7 +127,7 @@ struct check_swap_impl_tensor {
127
127
};
128
128
129
129
template <typename TensorType>
130
- struct check_swap_impl <TensorType, Eigen::TensorBase<TensorType> >
130
+ struct check_swap_impl <TensorType, Eigen::TensorBase<TensorType>>
131
131
: check_swap_impl_tensor<TensorType> {};
132
132
#endif
133
133
@@ -294,11 +294,11 @@ template <typename MatType>
294
294
struct eigen_allocator_impl_matrix ;
295
295
296
296
template <typename MatType>
297
- struct eigen_allocator_impl <MatType, Eigen::MatrixBase<MatType> >
297
+ struct eigen_allocator_impl <MatType, Eigen::MatrixBase<MatType>>
298
298
: eigen_allocator_impl_matrix<MatType> {};
299
299
300
300
template <typename MatType>
301
- struct eigen_allocator_impl <const MatType, const Eigen::MatrixBase<MatType> >
301
+ struct eigen_allocator_impl <const MatType, const Eigen::MatrixBase<MatType>>
302
302
: eigen_allocator_impl_matrix<const MatType> {};
303
303
304
304
template <typename MatType>
@@ -362,12 +362,12 @@ template <typename TensorType>
362
362
struct eigen_allocator_impl_tensor ;
363
363
364
364
template <typename TensorType>
365
- struct eigen_allocator_impl <TensorType, Eigen::TensorBase<TensorType> >
365
+ struct eigen_allocator_impl <TensorType, Eigen::TensorBase<TensorType>>
366
366
: eigen_allocator_impl_tensor<TensorType> {};
367
367
368
368
template <typename TensorType>
369
369
struct eigen_allocator_impl <const TensorType,
370
- const Eigen::TensorBase<TensorType> >
370
+ const Eigen::TensorBase<TensorType>>
371
371
: eigen_allocator_impl_tensor<const TensorType> {};
372
372
373
373
template <typename TensorType>
@@ -462,7 +462,7 @@ inline bool is_arr_layout_compatible_with_mat_type(PyArrayObject *pyArray) {
462
462
}
463
463
464
464
template <typename MatType, int Options, typename Stride>
465
- struct eigen_allocator_impl_matrix <Eigen::Ref<MatType, Options, Stride> > {
465
+ struct eigen_allocator_impl_matrix <Eigen::Ref<MatType, Options, Stride>> {
466
466
typedef Eigen::Ref<MatType, Options, Stride> RefType;
467
467
typedef typename MatType::Scalar Scalar;
468
468
@@ -523,7 +523,7 @@ struct eigen_allocator_impl_matrix<Eigen::Ref<MatType, Options, Stride> > {
523
523
524
524
template <typename MatType, int Options, typename Stride>
525
525
struct eigen_allocator_impl_matrix <
526
- const Eigen::Ref<const MatType, Options, Stride> > {
526
+ const Eigen::Ref<const MatType, Options, Stride>> {
527
527
typedef const Eigen::Ref<const MatType, Options, Stride> RefType;
528
528
typedef typename MatType::Scalar Scalar;
529
529
@@ -590,14 +590,14 @@ template <typename TensorType, typename TensorRef>
590
590
struct eigen_allocator_impl_tensor_ref ;
591
591
592
592
template <typename TensorType>
593
- struct eigen_allocator_impl_tensor <Eigen::TensorRef<TensorType> >
593
+ struct eigen_allocator_impl_tensor <Eigen::TensorRef<TensorType>>
594
594
: eigen_allocator_impl_tensor_ref<TensorType,
595
- Eigen::TensorRef<TensorType> > {};
595
+ Eigen::TensorRef<TensorType>> {};
596
596
597
597
template <typename TensorType>
598
- struct eigen_allocator_impl_tensor <const Eigen::TensorRef<const TensorType> >
598
+ struct eigen_allocator_impl_tensor <const Eigen::TensorRef<const TensorType>>
599
599
: eigen_allocator_impl_tensor_ref<
600
- const TensorType, const Eigen::TensorRef<const TensorType> > {};
600
+ const TensorType, const Eigen::TensorRef<const TensorType>> {};
601
601
602
602
template <typename TensorType, typename RefType>
603
603
struct eigen_allocator_impl_tensor_ref {
0 commit comments