danvratil / qcoro

C++ Coroutines for Qt
https://qcoro.dvratil.cz
MIT License
331 stars 53 forks source link

Fix clang 16 builds #161

Closed DeveloperPaul123 closed 1 year ago

DeveloperPaul123 commented 1 year ago

Fixes #160

I've confirmed that this issue is present in Clang 16 on Windows, but it's unclear if it's still present with Clang 15.

danvratil commented 1 year ago

Indeed, that flag has been deprecated in clang 16

-fcoroutines-ts has been deprecated. The flag will be removed in Clang 17. Please use -std=c++20 or higher to use standard C++ coroutines instead.

Time to add another compiler to the CI matrix ;-)