ClickHouse/clickhouse-cpp

Remove `my_result_of_t` in favor of `std::invoke_result_t`

Enmk opened this issue · 0 comments

Enmk commented

Kludged to support both C++ 17 and C++ 20, but now since we've completely switched to C++20 in 3.0 branch, it is safe to remove it.

using my_result_of_t = std::invoke_result_t<F, ArgTypes...>;