Apply clang-tidy-8 readability-uppercase-literal-suffix
[alexxy/gromacs.git] / src / gromacs / math / functions.h
index aa8d9fefb4c399caeb3ade89b714818be5e2b5ef..5b523ad86039872275a628f63dfdc4f12786cb94 100644 (file)
@@ -167,7 +167,7 @@ greatestCommonDivisor(std::int64_t p, std::int64_t q);
 static inline float
 invsqrt(float x)
 {
-    return 1.0f/std::sqrt(x);
+    return 1.0F/std::sqrt(x);
 }
 
 /*! \brief Calculate 1.0/sqrt(x) in double precision, but single range
@@ -210,7 +210,7 @@ invsqrt(int x)
 static inline float
 invcbrt(float x)
 {
-    return 1.0f/std::cbrt(x);
+    return 1.0F/std::cbrt(x);
 }
 
 /*! \brief Calculate inverse sixth root of x in double precision