From 815fa0dbf63f112f98fe3ac38483e0248caf9eec Mon Sep 17 00:00:00 2001 From: Jonas Adler Date: Wed, 22 Jul 2015 12:29:18 +0200 Subject: Fixed some compiler bugs in NVCC, now compiles with CUDA. (chtz: Manually joined sevaral commits to keep the history clean) --- Eigen/src/Core/Replicate.h | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) (limited to 'Eigen/src/Core/Replicate.h') diff --git a/Eigen/src/Core/Replicate.h b/Eigen/src/Core/Replicate.h index 518c52e57..bec598310 100644 --- a/Eigen/src/Core/Replicate.h +++ b/Eigen/src/Core/Replicate.h @@ -114,27 +114,12 @@ template class Replicate */ template template -inline const Replicate +const Replicate DenseBase::replicate() const { return Replicate(derived()); } -/** - * \return an expression of the replication of \c *this - * - * Example: \include MatrixBase_replicate_int_int.cpp - * Output: \verbinclude MatrixBase_replicate_int_int.out - * - * \sa VectorwiseOp::replicate(), DenseBase::replicate(), class Replicate - */ -template -inline const Replicate -DenseBase::replicate(Index rowFactor,Index colFactor) const -{ - return Replicate(derived(),rowFactor,colFactor); -} - /** * \return an expression of the replication of each column (or row) of \c *this * -- cgit v1.2.3