Skip to content

Commit 57fd94f

Browse files
committed
fix F
1 parent 8ee8b7f commit 57fd94f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Src/Base/AMReX_Math.H

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ float rsqrt (float x)
341341
{
342342
float r;
343343
AMREX_IF_ON_DEVICE(( r = rsqrtf(x); ))
344-
AMREX_IF_ON_HOST(( r = 1.f / std::sqrt(x); ))
344+
AMREX_IF_ON_HOST(( r = 1.F / std::sqrt(x); ))
345345
return r;
346346
}
347347

0 commit comments

Comments
 (0)