From ad61d951edee3ea6ca425f959cd02b5721b8e76c Mon Sep 17 00:00:00 2001 From: Billy Robert O'Neal III Date: Mon, 3 Jun 2024 11:29:57 -0700 Subject: [PATCH] Add missing header. Fixes build on macOS 14.5. --- include/clockUtils/sockets/TcpSocket.h | 1 + include/clockUtils/sockets/UdpSocket.h | 1 + 2 files changed, 2 insertions(+) diff --git a/include/clockUtils/sockets/TcpSocket.h b/include/clockUtils/sockets/TcpSocket.h index 6e0d9c8..d555258 100644 --- a/include/clockUtils/sockets/TcpSocket.h +++ b/include/clockUtils/sockets/TcpSocket.h @@ -33,6 +33,7 @@ #include #include #include +#include #include "clockUtils/errors.h" diff --git a/include/clockUtils/sockets/UdpSocket.h b/include/clockUtils/sockets/UdpSocket.h index 31eeeb5..0f50a4b 100644 --- a/include/clockUtils/sockets/UdpSocket.h +++ b/include/clockUtils/sockets/UdpSocket.h @@ -33,6 +33,7 @@ #include #include #include +#include #include "clockUtils/errors.h"