From e69b7962d1f0e44a0e260b71ad12d37a43b4ecb2 Mon Sep 17 00:00:00 2001 From: Chlumsky Date: Tue, 19 Sep 2023 21:57:36 +0200 Subject: [PATCH] Fixed include for qsort --- core/Scanline.cpp | 2 +- core/Shape.cpp | 2 +- core/edge-coloring.cpp | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/core/Scanline.cpp b/core/Scanline.cpp index 8e5352d..7407be4 100644 --- a/core/Scanline.cpp +++ b/core/Scanline.cpp @@ -1,7 +1,7 @@ #include "Scanline.h" -#include +#include #include "arithmetics.hpp" namespace msdfgen { diff --git a/core/Shape.cpp b/core/Shape.cpp index 5b2d0f6..53c4409 100644 --- a/core/Shape.cpp +++ b/core/Shape.cpp @@ -1,7 +1,7 @@ #include "Shape.h" -#include +#include #include "arithmetics.hpp" namespace msdfgen { diff --git a/core/edge-coloring.cpp b/core/edge-coloring.cpp index 873efd0..f3c7335 100644 --- a/core/edge-coloring.cpp +++ b/core/edge-coloring.cpp @@ -1,6 +1,7 @@ #include "edge-coloring.h" +#include #include #include #include