mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Add a few missing EIGEN_DEVICE_FUNC declarations
This commit is contained in:
@@ -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() {}
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user