bkietz commented on code in PR #37264:
URL: https://github.com/apache/arrow/pull/37264#discussion_r1300451902


##########
cpp/src/arrow/filesystem/filesystem.cc:
##########
@@ -498,7 +498,9 @@ Result<std::string> SubTreeFileSystem::PathFromUri(const 
std::string& uri_string
 
 SlowFileSystem::SlowFileSystem(std::shared_ptr<FileSystem> base_fs,
                                std::shared_ptr<io::LatencyGenerator> latencies)
-    : FileSystem(base_fs->io_context()), base_fs_(base_fs), 
latencies_(latencies) {}
+    : FileSystem(base_fs->io_context()),
+      base_fs_(base_fs),

Review Comment:
   ```suggestion
         base_fs_(std::move(base_fs)),
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to