From 6d08f71a2dcedf2eee26b1b04f2359502100e078 Mon Sep 17 00:00:00 2001 From: Hauke Heibel Date: Sun, 14 Mar 2010 12:09:29 +0100 Subject: Removed strong inlines which cannot always be inlined. --- Eigen/src/Sparse/SparseProduct.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Eigen/src/Sparse/SparseProduct.h') diff --git a/Eigen/src/Sparse/SparseProduct.h b/Eigen/src/Sparse/SparseProduct.h index a56bc7601..efc676a69 100644 --- a/Eigen/src/Sparse/SparseProduct.h +++ b/Eigen/src/Sparse/SparseProduct.h @@ -562,7 +562,7 @@ class DenseTimeSparseProduct // sparse * sparse template template -EIGEN_STRONG_INLINE const typename SparseProductReturnType::Type +inline const typename SparseProductReturnType::Type SparseMatrixBase::operator*(const SparseMatrixBase &other) const { return typename SparseProductReturnType::Type(derived(), other.derived()); @@ -571,7 +571,7 @@ SparseMatrixBase::operator*(const SparseMatrixBase &other // sparse * dense template template -EIGEN_STRONG_INLINE const SparseTimeDenseProduct +inline const SparseTimeDenseProduct SparseMatrixBase::operator*(const MatrixBase &other) const { return SparseTimeDenseProduct(derived(), other.derived()); -- cgit v1.2.3