From 01f3ce1b7923fd9b8b5bc51edaba78baeccfcc00 Mon Sep 17 00:00:00 2001 From: Filitov Mikhail Date: Mon, 1 Apr 2024 22:42:01 +0200 Subject: [PATCH] [YQL-17709] Fix clang14 build (#3369) --- ydb/library/yql/dq/actors/spilling/channel_storage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ydb/library/yql/dq/actors/spilling/channel_storage.cpp b/ydb/library/yql/dq/actors/spilling/channel_storage.cpp index 6a2ebac050f4..79ca0fdae147 100644 --- a/ydb/library/yql/dq/actors/spilling/channel_storage.cpp +++ b/ydb/library/yql/dq/actors/spilling/channel_storage.cpp @@ -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; }