Add a few missing EIGEN_DEVICE_FUNC declarations

This commit is contained in:
Gael Guennebaud
2015-09-03 14:14:54 +02:00
parent d91db41a31
commit 941a99ac1a
2 changed files with 7 additions and 6 deletions

View File

@@ -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() {}
};