fix scoping ambiguity issue that confuses nvcc
This commit is contained in:
@ -356,7 +356,7 @@ DenseMatrix<T> Matrix<T>::pow(double n) const
|
||||
int sz=this->size(); for(INDEX i=0; i<sz; i++)
|
||||
{
|
||||
double val = R[i];
|
||||
R[i] = pow(val,n);
|
||||
R[i] = std::pow(val,n);
|
||||
}
|
||||
return R;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user