Skip to content

Commit 8535707

Browse files
committed
Fix spacing lint
1 parent 85674d3 commit 8535707

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

r/src/field.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ std::shared_ptr<arrow::Field> Field__WithMetadata(
7171
auto values = cpp11::as_cpp<std::vector<std::string>>(metadata);
7272
auto names = cpp11::as_cpp<std::vector<std::string>>(metadata.attr("names"));
7373
auto kv =
74-
std::make_shared<arrow::KeyValueMetadata>(std::move(names), std::move(values));
74+
std::make_shared<arrow::KeyValueMetadata>(std::move(names), std::move(values));
7575
return field->WithMetadata(std::move(kv));
7676
}
7777

0 commit comments

Comments
 (0)