diff options
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 { + |