Copilot commented on code in PR #50301: URL: https://github.com/apache/arrow/pull/50301#discussion_r3497763255
########## cpp/src/arrow/ipc/message_internal_test.cc: ########## @@ -24,7 +24,7 @@ #include <gtest/gtest.h> -#include "Message_generated.h" +#include "generated/Message_generated.h" Review Comment: The PR title/description say the fix is to add the flatbuffers generated path to Meson include dirs so `#include "Message_generated.h"` works. This change instead switches the source to `#include "generated/Message_generated.h"` (matching other IPC sources) and does not address Meson include paths. Please align the PR description/title with the actual fix, or (if the intention is to avoid `generated/` in includes) keep the include as `Message_generated.h` and update Meson/CMake include paths accordingly. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
