blob: c3e8117d22e30e2646565a2f707de31bc16bd11f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
https://github.com/maxbachmann/rapidfuzz-cpp/pull/102
From f3c691bd8a0659ac3acb7510dab5a536f4d41e1b Mon Sep 17 00:00:00 2001
From: Sam James <sam@gentoo.org>
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 <cstdint>
#include <string>
extern std::basic_string<uint8_t> ocr_example1;
|