Skip to content

Commit

Permalink
fix macos build
Browse files Browse the repository at this point in the history
  • Loading branch information
jinchengchenghh committed May 16, 2024
1 parent 86954d5 commit a48638b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/arrow/dataset/file_csv.cc
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ Result<std::shared_ptr<FragmentScanOptions>> CsvFragmentScanOptions::from(
const std::unordered_map<std::string, std::string>& configs) {
std::shared_ptr<CsvFragmentScanOptions> options =
std::make_shared<CsvFragmentScanOptions>();
for (auto it : configs) {
for (auto const& it : configs) {
auto& key = it.first;
auto& value = it.second;
if (key == "delimiter") {
Expand Down
1 change: 1 addition & 0 deletions cpp/src/arrow/engine/substrait/serde.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#include <memory>
#include <string>
#include <string_view>
#include <unordered_map>
#include <vector>

#include "arrow/compute/type_fwd.h"
Expand Down

0 comments on commit a48638b

Please sign in to comment.