danvratil / qcoro

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

Fix CheckAtomic failing on Windows with Clang #159

Closed danvratil closed 1 year ago

danvratil commented 1 year ago

Looks one of the MSVC standard headers uses C++14 syntax, but we were building the test in C++11 mode which failed the build. This change compiles the test with C++20 so we should be safe on all sides.