From 51410975acbf713fe07a1573b4f04fafebb6f727 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Tue, 10 Apr 2012 17:32:21 +0200 Subject: [PATCH] suppress extra ',' and ';' --- Eigen/src/Core/products/SelfadjointMatrixVector_MKL.h | 2 +- Eigen/src/QR/ColPivHouseholderQR_MKL.h | 2 +- 2 files changed, 2 insertions(+), 2 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_; \ diff --git a/Eigen/src/QR/ColPivHouseholderQR_MKL.h b/Eigen/src/QR/ColPivHouseholderQR_MKL.h index 9cf4d2fae..c50ae24dd 100644 --- a/Eigen/src/QR/ColPivHouseholderQR_MKL.h +++ b/Eigen/src/QR/ColPivHouseholderQR_MKL.h @@ -79,7 +79,7 @@ ColPivHouseholderQR