diff options
author | Cyril Kaiser <cyril.kaiser2@gmail.com> | 2021-05-22 18:15:32 +0100 |
---|---|---|
committer | Rasmus Munk Larsen <rmlarsen@google.com> | 2021-05-26 19:28:13 +0000 |
commit | 91cd67f057f90101cf858d63916ee56a58511b0d (patch) | |
tree | d73237185641e4e90d2cc1cd05220330f73de1a2 | |
parent | dba753a986b527a17c8cc62474d0487aec7c2b36 (diff) |
Remove EIGEN_DEVICE_FUNC from CwiseBinaryOp's default copy constructor.
-rw-r--r-- | Eigen/src/Core/CwiseBinaryOp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/CwiseBinaryOp.h b/Eigen/src/Core/CwiseBinaryOp.h index 59974a545..2202b1cc6 100644 --- a/Eigen/src/Core/CwiseBinaryOp.h +++ b/Eigen/src/Core/CwiseBinaryOp.h @@ -102,7 +102,7 @@ class CwiseBinaryOp : #if EIGEN_COMP_MSVC && EIGEN_HAS_CXX11 //Required for Visual Studio or the Copy constructor will probably not get inlined! - EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE + EIGEN_STRONG_INLINE CwiseBinaryOp(const CwiseBinaryOp<BinaryOp,LhsType,RhsType>&) = default; #endif |