From b2ace99448fdb8dfadb4c7baa91d6163954c9c43 Mon Sep 17 00:00:00 2001 From: JaoSchmidt <51456769+JaoSchmidt@users.noreply.github.com> Date: Fri, 30 May 2025 18:31:17 -0300 Subject: [PATCH] Fix DynamicAtlas.hpp inline error --- msdf-atlas-gen/DynamicAtlas.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/msdf-atlas-gen/DynamicAtlas.hpp b/msdf-atlas-gen/DynamicAtlas.hpp index 4c3ed3c..d5247a8 100644 --- a/msdf-atlas-gen/DynamicAtlas.hpp +++ b/msdf-atlas-gen/DynamicAtlas.hpp @@ -3,7 +3,7 @@ namespace msdf_atlas { -static int ceilPOT(int x) { +static inline int ceilPOT(int x) { if (x > 0) { int y = 1; while (y < x)