pitrou commented on code in PR #48615: URL: https://github.com/apache/arrow/pull/48615#discussion_r2682974169
########## cpp/src/parquet/encryption/encryption_internal.cc: ########## @@ -15,25 +15,23 @@ // specific language governing permissions and limitations // under the License. -#include "parquet/encryption/encryption_internal.h" - -#include <openssl/aes.h> -#include <openssl/err.h> -#include <openssl/evp.h> -#include <openssl/rand.h> - #include <algorithm> #include <array> #include <iostream> #include <memory> +#include <openssl/aes.h> +#include <openssl/err.h> +#include <openssl/evp.h> +#include <openssl/rand.h> Review Comment: Just like with GTest, can we keep OpenSSL inclusions separate from standard library inclusions? -- 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]
