Copilot commented on code in PR #50807: URL: https://github.com/apache/arrow/pull/50807#discussion_r3903028975
########## cpp/src/parquet/statistics.cc: ########## @@ -19,6 +19,8 @@ #include <algorithm> #include <cmath> +#include <compare> +#include <concepts> #include <cstring> Review Comment: `std::invoke` is used later in this file, but `<functional>` is not included. Relying on transitive includes can break builds on some platforms / standard library implementations; include `<functional>` explicitly. -- 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]
