[CRT] exp2*.c: Add an explicit type for 'TWO' variable
[reactos.git] / sdk / lib / crt / math / exp2f.c
index 292308a..818a28b 100644 (file)
@@ -8,6 +8,6 @@ exp2f(
     _In_ float x)
 {
     /* This below avoids clang to optimize our pow call to exp2 */
-    static const TWO = 2.0f;
+    static const float TWO = 2.0f;
     return powf(TWO, x);
 }