aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/products
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2012-04-10 17:32:21 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2012-04-10 17:32:21 +0200
commit51410975acbf713fe07a1573b4f04fafebb6f727 (patch)
treeddc30be5a6ad7ca0abbd9e3aa1c0fe159dbe8c9b /Eigen/src/Core/products
parentb0cf95619e0777194fcc2d1337a39ef5357a4233 (diff)
suppress extra ',' and ';'
Diffstat (limited to 'Eigen/src/Core/products')
-rw-r--r--Eigen/src/Core/products/SelfadjointMatrixVector_MKL.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/products/SelfadjointMatrixVector_MKL.h b/Eigen/src/Core/products/SelfadjointMatrixVector_MKL.h
index d5a92d9e9..334036e3a 100644
--- a/Eigen/src/Core/products/SelfadjointMatrixVector_MKL.h
+++ b/Eigen/src/Core/products/SelfadjointMatrixVector_MKL.h
@@ -81,7 +81,7 @@ const EIGTYPE* _rhs, Index rhsIncr, EIGTYPE* res, EIGTYPE alpha) \
{ \
enum {\
IsRowMajor = StorageOrder==RowMajor ? 1 : 0, \
- IsLower = UpLo == Lower ? 1 : 0, \
+ IsLower = UpLo == Lower ? 1 : 0 \
}; \
MKL_INT n=size, lda=lhsStride, incx=rhsIncr, incy=1; \
MKLTYPE alpha_, beta_; \