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 dd33cabdc4 MINOR: [C++] Add mising pragma-once (#35657)
dd33cabdc4 is described below
commit dd33cabdc40fc28f85e6f80bbf572f8ddfeae9ef
Author: Felipe Oliveira Carvalho <[email protected]>
AuthorDate: Thu May 18 11:30:50 2023 -0300
MINOR: [C++] Add mising pragma-once (#35657)
### Rationale for this change
The C compilation model.
### What changes are included in this PR?
Adding a `#pragma once` that I forgot to add when I created this header.
### Are these changes tested?
N/A.
Authored-by: Felipe Oliveira Carvalho <[email protected]>
Signed-off-by: Antoine Pitrou <[email protected]>
---
cpp/src/arrow/compute/kernels/ree_util_internal.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/cpp/src/arrow/compute/kernels/ree_util_internal.h
b/cpp/src/arrow/compute/kernels/ree_util_internal.h
index 8e06427b8d..7dda702c04 100644
--- a/cpp/src/arrow/compute/kernels/ree_util_internal.h
+++ b/cpp/src/arrow/compute/kernels/ree_util_internal.h
@@ -15,6 +15,8 @@
// specific language governing permissions and limitations
// under the License.
+#pragma once
+
// Useful operations to implement kernels handling run-end encoded arrays
#include <algorithm>