From a99dd64d1285a8607853bf93a34cf0a318f9ef81 Mon Sep 17 00:00:00 2001 From: gg-yb <76439353+gg-yb@users.noreply.github.com> Date: Wed, 12 Jun 2024 11:24:03 +0200 Subject: [PATCH] add explicit include for to utils.hpp Seemingly, our standard library does not have a transitive include for std::uintN_t with the given includes. The standard-conform way to use std::uintN_t (note the namespace!) is to include , the std-embedded version of . --- include/ftp/detail/utils.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/ftp/detail/utils.hpp b/include/ftp/detail/utils.hpp index d33a26b..f5511d4 100644 --- a/include/ftp/detail/utils.hpp +++ b/include/ftp/detail/utils.hpp @@ -25,6 +25,7 @@ #ifndef LIBFTP_UTILS_HPP #define LIBFTP_UTILS_HPP +#include #include #include #include