diff options
author | Remi Collet <remi@remirepo.net> | 2025-02-19 17:08:20 +0100 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2025-02-19 17:08:20 +0100 |
commit | e881c254c4c3bd82707f4e3102334039bfede680 (patch) | |
tree | 8bbdbd2d0e2c688f05aed0bb8d84f1bb8dd8a580 /18.patch | |
parent | 258d150cfaa4add4c5b0fd311b018a3c34983e86 (diff) |
fix build with GCC 15 using patch from
https://github.com/SeasX/SeasClick/pull/18
Diffstat (limited to '18.patch')
-rw-r--r-- | 18.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/18.patch b/18.patch new file mode 100644 index 0000000..e211305 --- /dev/null +++ b/18.patch @@ -0,0 +1,21 @@ +From 0673b2174b857b89d26f79ca6e0d28f7115982ab Mon Sep 17 00:00:00 2001 +From: Remi Collet <remi@remirepo.net> +Date: Wed, 19 Feb 2025 17:01:48 +0100 +Subject: [PATCH] fix #17 add missing <cstdint> include + +--- + lib/clickhouse-cpp/clickhouse/types/types.h | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/lib/clickhouse-cpp/clickhouse/types/types.h b/lib/clickhouse-cpp/clickhouse/types/types.h +index e8d6c99..d9387a5 100644 +--- a/lib/clickhouse-cpp/clickhouse/types/types.h ++++ b/lib/clickhouse-cpp/clickhouse/types/types.h +@@ -4,6 +4,7 @@ + #include <memory> + #include <string> + #include <vector> ++#include <cstdint> + + namespace clickhouse { + |