fixed compilation error under nvcc
This commit is contained in:
parent
fada88e100
commit
d7d0754f38
@ -2077,10 +2077,11 @@ public:
|
||||
|
||||
Vector(const Vector& d) { *this = d; }
|
||||
|
||||
Vector(const Vector& d, const Range& r)
|
||||
Vector(const Vector& d, const Range& r_)
|
||||
{
|
||||
if( r == Range::all() )
|
||||
r = Range(0, d.size());
|
||||
Range r = r_ == Range::all() ? Range(0, d.size()) : r_;
|
||||
/*if( r == Range::all() )
|
||||
r = Range(0, d.size());*/
|
||||
if( r.size() > 0 && r.start >= 0 && r.end <= d.size() )
|
||||
{
|
||||
if( d.hdr.refcount )
|
||||
|
Loading…
x
Reference in New Issue
Block a user