From ad14b7e067f9150f08ef26dc6984e6490953b9c6 Mon Sep 17 00:00:00 2001 From: Marcus Holland-Moritz Date: Sun, 17 Dec 2023 17:53:14 +0100 Subject: [PATCH] fix: add workaround for broken utf8cpp release (fixes gh #182) --- src/dwarfs/util.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/dwarfs/util.cpp b/src/dwarfs/util.cpp index aa6cde17..65db4f21 100644 --- a/src/dwarfs/util.cpp +++ b/src/dwarfs/util.cpp @@ -24,7 +24,11 @@ #include #include +#if __has_include() #include +#else +#include +#endif #include