Skip to content

Commit

Permalink
GH-32206: pre-commit lint changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
trifleneurotic committed Oct 25, 2024
1 parent 74d9d8f commit 46f7c50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/src/arrow/filesystem/gcsfs.cc
Original file line number Diff line number Diff line change
Expand Up @@ -962,8 +962,8 @@ Result<std::shared_ptr<io::OutputStream>> GcsFileSystem::OpenAppendStream(
return Status::NotImplemented("Append is not supported in GCS");
}

Result<std::shared_ptr<GcsFileSystem>> GcsFileSystem::Make(
const GcsOptions& options, const io::IOContext& context) {
Result<std::shared_ptr<GcsFileSystem>> GcsFileSystem::Make(const GcsOptions& options,
const io::IOContext& context) {
// Cannot use `std::make_shared<>` as the constructor is private.
return std::shared_ptr<GcsFileSystem>(new GcsFileSystem(options, context));
}
Expand Down

0 comments on commit 46f7c50

Please sign in to comment.