Skip to content

Commit

Permalink
[YQL-17709] Fix clang14 build (#3369)
Browse files Browse the repository at this point in the history
  • Loading branch information
lll-phill-lll authored Apr 1, 2024
1 parent 68fd422 commit 01f3ce1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ydb/library/yql/dq/actors/spilling/channel_storage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class TDqChannelStorage : public IDqChannelStorage {

ActorSystem_->Send(ChannelStorageActorId_, new TEvDqChannelSpilling::TEvPut(blobId, std::move(blob), std::move(promise)), /*flags*/0, cookie);

WritingBlobs_.emplace(blobId, TWritingBlobInfo(blobSize, std::move(future)));
WritingBlobs_.emplace(blobId, TWritingBlobInfo{blobSize, std::move(future)});
WritingBlobsTotalSize_ += blobSize;
}

Expand Down

0 comments on commit 01f3ce1

Please sign in to comment.