Fixed warning on clang 6 [#CLICKHOUSE-2].

This commit is contained in:
Alexey Milovidov 2017-07-24 08:18:00 +03:00 committed by alexey-milovidov
parent 1557fa2e8d
commit 366ad1595e

View File

@ -111,7 +111,7 @@ BlockInputStreamPtr ExecutableDictionarySource::loadIds(const std::vector<UInt64
return std::make_shared<BlockInputStreamWithBackgroundThread>(
input_stream, std::move(process), std::packaged_task<void()>(
[output_stream, &ids, this]() mutable
[output_stream, &ids]() mutable
{
formatIDs(output_stream, ids);
}));