Fixed include for qsort

This commit is contained in:
Chlumsky 2023-09-19 21:57:36 +02:00
parent 16f2057bbc
commit e69b7962d1
3 changed files with 3 additions and 2 deletions

View File

@ -1,7 +1,7 @@
#include "Scanline.h"
#include <algorithm>
#include <cstdlib>
#include "arithmetics.hpp"
namespace msdfgen {

View File

@ -1,7 +1,7 @@
#include "Shape.h"
#include <algorithm>
#include <cstdlib>
#include "arithmetics.hpp"
namespace msdfgen {

View File

@ -1,6 +1,7 @@
#include "edge-coloring.h"
#include <cstdlib>
#include <cmath>
#include <cstring>
#include <cfloat>