From db27b7c0ef987f222a87e24f4feec507cfe9635d Mon Sep 17 00:00:00 2001 From: Paul Lemire Date: Thu, 30 Mar 2023 11:11:24 +0200 Subject: [PATCH] Add missing cstdint include Needed when compiling with gcc13 --- include/lunasvg.h | 1 + source/property.h | 1 + 2 files changed, 2 insertions(+) diff --git a/include/lunasvg.h b/include/lunasvg.h index fb806b7..687b572 100644 --- a/include/lunasvg.h +++ b/include/lunasvg.h @@ -25,6 +25,7 @@ #include #include +#include #include #define LUNASVG_API LUNASVG_EXPORT diff --git a/source/property.h b/source/property.h index cdbff73..b087247 100644 --- a/source/property.h +++ b/source/property.h @@ -4,6 +4,7 @@ #include #include #include +#include namespace lunasvg {