From 17d7b60194e5b6d9005bb10947905a393f432624 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Sun, 30 Jun 2024 08:47:20 -0700 Subject: [PATCH] include stdint.h for int64_t types (#270) This is exposed when compiling for musl platforms where this header is not included indirectly. Signed-off-by: Khem Raj --- src/Value.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Value.cpp b/src/Value.cpp index cbda697..d6f2c9c 100644 --- a/src/Value.cpp +++ b/src/Value.cpp @@ -1,4 +1,5 @@ #include +#include #include "etcd/Value.hpp" #include "etcd/v3/KeyValue.hpp"