Skip to content

Commit

Permalink
Correct ordering of fields
Browse files Browse the repository at this point in the history
  • Loading branch information
felipecrv committed Dec 14, 2023
1 parent 3b3c329 commit 4f45c67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/arrow/filesystem/azurefs.cc
Original file line number Diff line number Diff line change
Expand Up @@ -757,9 +757,9 @@ class AzureFileSystem::Impl {
io::IOContext io_context_;
AzureOptions options_;

internal::HierarchicalNamespaceDetector hns_detector_;
std::unique_ptr<DataLake::DataLakeServiceClient> datalake_service_client_;
std::unique_ptr<Blobs::BlobServiceClient> blob_service_client_;
internal::HierarchicalNamespaceDetector hns_detector_;

Impl(AzureOptions options, io::IOContext io_context)
: io_context_(std::move(io_context)), options_(std::move(options)) {}
Expand Down

0 comments on commit 4f45c67

Please sign in to comment.