Add formating error

This commit is contained in:
Nick Gerleman
2022-10-14 07:49:34 -07:00
parent ce1446e3bf
commit 931cd34073

View File

@@ -21,7 +21,7 @@
#include <float.h>
/* define fmaxf if < VC12 */
#if _MSC_VER < 1800
#if _MSC_VER < 1800
__forceinline const float fmaxf(const float a, const float b) {
return (a > b) ? a : b;
}