mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 01:22:04 +00:00
Fixed build [#CLICKHOUSE-2].
This commit is contained in:
parent
3403f68c3f
commit
a78871f065
@ -58,7 +58,7 @@ struct RangeFiltered
|
||||
}
|
||||
|
||||
Iterator(const Iterator & rhs) = default;
|
||||
Iterator(Iterator && rhs) noexcept = default;
|
||||
Iterator(Iterator && rhs) = default;
|
||||
|
||||
Iterator operator++()
|
||||
{
|
||||
@ -105,7 +105,7 @@ struct RangeFiltered
|
||||
}
|
||||
|
||||
self_type & operator=(const self_type & rhs) = default;
|
||||
self_type & operator=(self_type && rhs) noexcept = default;
|
||||
self_type & operator=(self_type && rhs) = default;
|
||||
|
||||
~Iterator() = default;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user