Skip to content

Commit 4800358

Browse files
committed
CI fix
1 parent b1e6ea2 commit 4800358

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

google/cloud/storage/internal/async/object_descriptor_impl.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ void ObjectDescriptorImpl::Cancel() {
5959
}
6060
}
6161

62-
void ObjectDescriptorImpl::CancelStream(std::shared_ptr<OpenStream> stream) {
62+
void ObjectDescriptorImpl::CancelStream(
63+
std::shared_ptr<OpenStream> const& stream) {
6364
stream->Cancel();
6465
}
6566

google/cloud/storage/internal/async/object_descriptor_impl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ class ObjectDescriptorImpl
9292
return streams_[active_stream_];
9393
}
9494

95-
static void CancelStream(std::shared_ptr<OpenStream> stream);
95+
static void CancelStream(std::shared_ptr<OpenStream> const& stream);
9696
void Flush(std::unique_lock<std::mutex> lk);
9797
void OnWrite(bool ok);
9898
void DoRead(std::unique_lock<std::mutex>);

0 commit comments

Comments
 (0)