From 7749c22a1669245c98759a362899525e717e45bc Mon Sep 17 00:00:00 2001 From: Chen Date: Tue, 21 Jan 2025 22:29:32 +0800 Subject: [PATCH] [C++] Fix the issue with .h file imports in apron-client cpp_wrapper. (#1727) --- aeron-client/src/main/cpp_wrapper/Image.h | 1 + aeron-client/src/main/cpp_wrapper/Publication.h | 1 + 2 files changed, 2 insertions(+) diff --git a/aeron-client/src/main/cpp_wrapper/Image.h b/aeron-client/src/main/cpp_wrapper/Image.h index 19ec176e6a..d26923dc8a 100644 --- a/aeron-client/src/main/cpp_wrapper/Image.h +++ b/aeron-client/src/main/cpp_wrapper/Image.h @@ -23,6 +23,7 @@ #include #include #include +#include #include "concurrent/AtomicBuffer.h" #include "concurrent/logbuffer/Header.h" diff --git a/aeron-client/src/main/cpp_wrapper/Publication.h b/aeron-client/src/main/cpp_wrapper/Publication.h index 390d6673d4..8d74b13010 100644 --- a/aeron-client/src/main/cpp_wrapper/Publication.h +++ b/aeron-client/src/main/cpp_wrapper/Publication.h @@ -22,6 +22,7 @@ #include #include #include +#include #include "concurrent/AtomicBuffer.h" #include "concurrent/logbuffer/BufferClaim.h"