You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ko...@apache.org on 2020/06/14 00:21:32 UTC

[arrow] branch master updated: ARROW-9125: [C++] Add missing include for arrow::internal::ZeroMemory() for Valgrind

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 2e977a2  ARROW-9125: [C++] Add missing include for arrow::internal::ZeroMemory() for Valgrind
2e977a2 is described below

commit 2e977a2949c67f610d19cafcb8007e2ccaba5413
Author: Sutou Kouhei <ko...@clear-code.com>
AuthorDate: Sun Jun 14 09:21:00 2020 +0900

    ARROW-9125: [C++] Add missing include for arrow::internal::ZeroMemory() for Valgrind
    
    Closes #7429 from kou/cpp-valgrind-missing-include
    
    Authored-by: Sutou Kouhei <ko...@clear-code.com>
    Signed-off-by: Sutou Kouhei <ko...@clear-code.com>
---
 cpp/src/arrow/compute/exec.cc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/cpp/src/arrow/compute/exec.cc b/cpp/src/arrow/compute/exec.cc
index c5581bf..e6f648a 100644
--- a/cpp/src/arrow/compute/exec.cc
+++ b/cpp/src/arrow/compute/exec.cc
@@ -33,6 +33,7 @@
 #include "arrow/compute/function.h"
 #include "arrow/compute/kernel.h"
 #include "arrow/compute/registry.h"
+#include "arrow/compute/util_internal.h"
 #include "arrow/datum.h"
 #include "arrow/scalar.h"
 #include "arrow/status.h"