Skip to content

Commit 154df8f

Browse files
Fix missing cstdint include
The previous code did not compile under GCC-13 because libstdcpp headers have changed such that cstdint is not included implicitly. Add cstdint include when `uint64_t` types are used. Signed-off-by: Patrick Williams <[email protected]>
1 parent b782bd2 commit 154df8f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

include/restclient-cpp/connection.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
#include <string>
1414
#include <map>
1515
#include <cstdlib>
16+
#include <cstdint>
1617

1718
#include "restclient-cpp/restclient.h"
1819
#include "restclient-cpp/version.h"

0 commit comments

Comments
 (0)