From 931cd34073342d2ff8af2df3cafc65466295a542 Mon Sep 17 00:00:00 2001 From: Nick Gerleman Date: Fri, 14 Oct 2022 07:49:34 -0700 Subject: [PATCH] Add formating error --- yoga/Yoga.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yoga/Yoga.cpp b/yoga/Yoga.cpp index a5c70b47..ad2645c6 100644 --- a/yoga/Yoga.cpp +++ b/yoga/Yoga.cpp @@ -21,7 +21,7 @@ #include /* 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; }