This is an automated email from the ASF dual-hosted git repository.

apitrou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/main by this push:
     new f45a9e57df GH-35736: [C++] Fix compile key_map_avx2.cc (#35737)
f45a9e57df is described below

commit f45a9e57dfcabe73b341f0e0504f7e8210988dad
Author: Francis <[email protected]>
AuthorDate: Wed May 24 20:17:34 2023 +0800

    GH-35736: [C++] Fix compile key_map_avx2.cc (#35737)
    
    Add missing include for `ARROW_DCHECK`.
    
    * Closes: #35736
    
    Authored-by: light-city <[email protected]>
    Signed-off-by: Antoine Pitrou <[email protected]>
---
 cpp/src/arrow/compute/key_map_avx2.cc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/cpp/src/arrow/compute/key_map_avx2.cc 
b/cpp/src/arrow/compute/key_map_avx2.cc
index fdbae25c9d..eb318ff188 100644
--- a/cpp/src/arrow/compute/key_map_avx2.cc
+++ b/cpp/src/arrow/compute/key_map_avx2.cc
@@ -18,6 +18,7 @@
 #include <immintrin.h>
 
 #include "arrow/compute/key_map.h"
+#include "arrow/util/logging.h"
 
 namespace arrow {
 namespace compute {

Reply via email to