fix build with clang-9

This commit is contained in:
Alexander Tokmakov 2020-06-17 16:18:52 +03:00
parent 63d0f1e1c6
commit eebfc9d2da

View File

@ -33,6 +33,7 @@ struct AggregateFunctionWithProperties
AggregateFunctionWithProperties() = default;
AggregateFunctionWithProperties(const AggregateFunctionWithProperties &) = default;
AggregateFunctionWithProperties & operator = (const AggregateFunctionWithProperties &) = default;
template <typename Creator, std::enable_if_t<!std::is_same_v<Creator, AggregateFunctionWithProperties>> * = nullptr>
AggregateFunctionWithProperties(Creator creator_, AggregateFunctionProperties properties_ = {})