From 4023774a5d6d0d79f5690a64a3b249b958d7234c Mon Sep 17 00:00:00 2001 From: Felipe Oliveira Carvalho Date: Thu, 14 Dec 2023 13:28:03 -0300 Subject: [PATCH] Correct ordering of fields --- cpp/src/arrow/filesystem/azurefs.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/src/arrow/filesystem/azurefs.cc b/cpp/src/arrow/filesystem/azurefs.cc index d67619226416d..217885364089b 100644 --- a/cpp/src/arrow/filesystem/azurefs.cc +++ b/cpp/src/arrow/filesystem/azurefs.cc @@ -757,9 +757,9 @@ class AzureFileSystem::Impl { io::IOContext io_context_; AzureOptions options_; - internal::HierarchicalNamespaceDetector hns_detector_; std::unique_ptr datalake_service_client_; std::unique_ptr blob_service_client_; + internal::HierarchicalNamespaceDetector hns_detector_; Impl(AzureOptions options, io::IOContext io_context) : io_context_(std::move(io_context)), options_(std::move(options)) {}