From 08401514a79046c198310a68889ddb3c0d00002f Mon Sep 17 00:00:00 2001 From: Sutou Kouhei Date: Tue, 19 Mar 2024 01:12:06 +0900 Subject: [PATCH] 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 Signed-off-by: mwish --- 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 c4ed606676810..bd414149d5345 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 {