This is an automated email from the ASF dual-hosted git repository.
maplefu 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 08401514a7 GH-40621: [C++] Add missing util/config.h in
arrow/io/compressed_test.cc (#40625)
08401514a7 is described below
commit 08401514a79046c198310a68889ddb3c0d00002f
Author: Sutou Kouhei <[email protected]>
AuthorDate: Tue Mar 19 01:12:06 2024 +0900
GH-40621: [C++] Add missing util/config.h in arrow/io/compressed_test.cc
(#40625)
### Rationale for this change
This is a follow-up of #40222. We need `#include arrow/util/config.h` for
`ARROW_WITH_*`.
### What changes are included in this PR?
Add missing `#include`.
### Are these changes tested?
Yes.
### Are there any user-facing changes?
No.
* GitHub Issue: #40621
Authored-by: Sutou Kouhei <[email protected]>
Signed-off-by: mwish <[email protected]>
---
cpp/src/arrow/io/compressed_test.cc | 1 +
1 file changed, 1 insertion(+)
diff --git a/cpp/src/arrow/io/compressed_test.cc
b/cpp/src/arrow/io/compressed_test.cc
index c4ed606676..bd414149d5 100644
--- a/cpp/src/arrow/io/compressed_test.cc
+++ b/cpp/src/arrow/io/compressed_test.cc
@@ -33,6 +33,7 @@
#include "arrow/testing/gtest_util.h"
#include "arrow/testing/util.h"
#include "arrow/util/compression.h"
+#include "arrow/util/config.h"
namespace arrow {
namespace io {