summaryrefslogtreecommitdiffstats
path: root/18.patch
blob: e211305c09fe3dc9278e24206df49af1a4da2b7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 {