mozilla / cubeb

Cross platform audio library
ISC License
439 stars 124 forks source link

std::result_of has been removed in c++20 #677

Closed malytomas closed 2 years ago

malytomas commented 2 years ago

There is deprecated and removed template used here: https://github.com/mozilla/cubeb/blob/dcc5cb5c15a0ee0ea0f9f9a04d4cd48af6714501/src/cubeb_mixer.cpp#L447

The template result_of has been removed in c++20, see: https://en.cppreference.com/w/cpp/types/result_of

kinetiknz commented 2 years ago

Thanks for pointing this out! This should be addressed by #679.

malytomas commented 2 years ago

Thanks