aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/util/Meta.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2015-09-03 14:14:54 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2015-09-03 14:14:54 +0200
commit941a99ac1aba69d26ce56286b1a04edfd07ec5cb (patch)
treeb15af1bd0e04dfa028613399d17aad75b7f12a83 /Eigen/src/Core/util/Meta.h
parentd91db41a31255302b582e4ebff3852a82ebcf243 (diff)
Add a few missing EIGEN_DEVICE_FUNC declarations
Diffstat (limited to 'Eigen/src/Core/util/Meta.h')
-rw-r--r--Eigen/src/Core/util/Meta.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Eigen/src/Core/util/Meta.h b/Eigen/src/Core/util/Meta.h
index c6830991c..6eb409194 100644
--- a/Eigen/src/Core/util/Meta.h
+++ b/Eigen/src/Core/util/Meta.h
@@ -186,11 +186,11 @@ template<> struct numeric_limits<long long>
*/
class noncopyable
{
- noncopyable(const noncopyable&);
- const noncopyable& operator=(const noncopyable&);
+ EIGEN_DEVICE_FUNC noncopyable(const noncopyable&);
+ EIGEN_DEVICE_FUNC const noncopyable& operator=(const noncopyable&);
protected:
- noncopyable() {}
- ~noncopyable() {}
+ EIGEN_DEVICE_FUNC noncopyable() {}
+ EIGEN_DEVICE_FUNC ~noncopyable() {}
};