aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2009-07-27 13:50:23 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2009-07-27 13:50:23 +0200
commit94cc30180e5b7bec9399d796945e41245c16afeb (patch)
tree8a47472dd8b4253ed966485ad2675471eb025e46 /Eigen/src/Core
parent0590c18555bd5d195e29ee6a131285cf0f80f9d1 (diff)
compilation fixes
Diffstat (limited to 'Eigen/src/Core')
-rw-r--r--Eigen/src/Core/products/SelfadjointProduct.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/Eigen/src/Core/products/SelfadjointProduct.h b/Eigen/src/Core/products/SelfadjointProduct.h
index f6420d10c..d3fc962d9 100644
--- a/Eigen/src/Core/products/SelfadjointProduct.h
+++ b/Eigen/src/Core/products/SelfadjointProduct.h
@@ -76,9 +76,6 @@ struct ei_selfadjoint_product<Scalar,MatStorageOrder, ColMajor, AAT, UpLo>
Scalar* blockA = ei_aligned_stack_new(Scalar, kc*mc);
Scalar* blockB = ei_aligned_stack_new(Scalar, kc*size*Blocking::PacketSize);
- // number of columns which can be processed by packet of nr columns
- int packet_cols = (size/Blocking::nr)*Blocking::nr;
-
// note that the actual rhs is the transpose/adjoint of mat
typedef ei_conj_helper<NumTraits<Scalar>::IsComplex && !AAT, NumTraits<Scalar>::IsComplex && AAT> Conj;