From 30d5ded486a1e6472b7aa6f864f4c4f232442c28 Mon Sep 17 00:00:00 2001 From: Okan <61149510+okan-nako@users.noreply.github.com> Date: Fri, 16 Jan 2026 09:23:32 +0100 Subject: [PATCH] missing include: ARGV.h This missing include causes compile errors while building ARGV.cpp on some platforms. --- ACE/ace/ARGV.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/ACE/ace/ARGV.cpp b/ACE/ace/ARGV.cpp index ee07ffc90d315..89e163b051ca6 100644 --- a/ACE/ace/ARGV.cpp +++ b/ACE/ace/ARGV.cpp @@ -1,6 +1,7 @@ #ifndef ACE_ARGV_CPP #define ACE_ARGV_CPP +#include "ace/ARGV.h" #include "ace/Log_Category.h" #include "ace/OS_NS_unistd.h" #include "ace/OS_NS_string.h"