Skip to content

Commit

Permalink
add using ::isinf for cuda intrinsic
Browse files Browse the repository at this point in the history
  • Loading branch information
neilkichler committed Jul 17, 2024
1 parent 094964a commit 2683ebe
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions include/cutangent/arithmetic/basic.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -380,6 +380,7 @@ template<typename T>
fn bool isinf(tangent<T> x)
{
using std::isinf;
using ::isinf;

return isinf(x.v);
}
Expand Down

0 comments on commit 2683ebe

Please sign in to comment.