Copilot commented on code in PR #819:
URL: https://github.com/apache/arrow-nanoarrow/pull/819#discussion_r2461303330


##########
src/nanoarrow/ipc/codecs.c:
##########
@@ -54,6 +54,66 @@ ArrowIpcDecompressFunction 
ArrowIpcGetZstdDecompressionFunction(void) {
 #endif
 }
 
+#if defined(NANOARROW_IPC_WITH_LZ4)
+#include <lz4.h>
+#include <lz4frame.h>
+#include <lz4hc.h>

Review Comment:
   The include of `<lz4hc.h>` appears unnecessary as the implementation only 
uses the LZ4 frame API (`LZ4F_*` functions) and does not use any 
high-compression (`LZ4_HC_*`) functions. Consider removing this unused include.
   ```suggestion
   
   ```



-- 
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]

Reply via email to