Commit 319508bd authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

fix scoping ambiguity issue that confuses nvcc

parent fa6fc947
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
}