https://github.com/maxbachmann/rapidfuzz-cpp/pull/102 From f3c691bd8a0659ac3acb7510dab5a536f4d41e1b Mon Sep 17 00:00:00 2001 From: Sam James Date: Tue, 18 Apr 2023 07:33:39 +0100 Subject: [PATCH] Fix build with GCC 13 GCC 13 (as usual for new compiler releases) shuffles around some internal includes so some are no longer transitively included. See https://gnu.org/software/gcc/gcc-13/porting_to.html. Bug: https://bugs.gentoo.org/895696 --- a/test/distance/examples/ocr.hpp +++ b/test/distance/examples/ocr.hpp @@ -1,4 +1,5 @@ #pragma once +#include #include extern std::basic_string ocr_example1;