summaryrefslogtreecommitdiff
path: root/dev-libs/liborcus/files/liborcus-0.19.2-gcc15-cstdint.patch
blob: 5cf7ab1e46f76c52cba8c2f6e3be80c0484c8edb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
https://bugs.gentoo.org/937392
https://gitlab.com/orcus/orcus/-/issues/199
https://gitlab.com/orcus/orcus/-/merge_requests/200

From b7932facdf56994b7b1238bafe1e13b4817f69f1 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Kacper=20S=C5=82omi=C5=84ski?=
 <kacper.slominski72@gmail.com>
Date: Wed, 14 Aug 2024 03:36:46 +0200
Subject: [PATCH] Add missing <cstdint> includes

--- a/include/orcus/json_document_tree.hpp
+++ b/include/orcus/json_document_tree.hpp
@@ -14,6 +14,7 @@
 #include <string>
 #include <memory>
 #include <vector>
+#include <cstdint>
 
 namespace orcus {
 
--- a/include/orcus/sax_parser.hpp
+++ b/include/orcus/sax_parser.hpp
@@ -11,6 +11,7 @@
 #include "sax_parser_base.hpp"
 
 #include <string_view>
+#include <cstdint>
 
 namespace orcus {
 
--- a/include/orcus/yaml_document_tree.hpp
+++ b/include/orcus/yaml_document_tree.hpp
@@ -14,6 +14,7 @@
 #include <string>
 #include <memory>
 #include <vector>
+#include <cstdint>
 
 namespace orcus {
 
--- a/include/orcus/zip_archive.hpp
+++ b/include/orcus/zip_archive.hpp
@@ -15,6 +15,7 @@
 #include <vector>
 #include <memory>
 #include <ostream>
+#include <cstdint>
 
 namespace orcus {
 
-- 
GitLab