You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to remove -fcoroutines-ts in clang. But I met problems in the test of clang-tidy. In clang-tidy/checkers/readability/identifier-naming.cpp, it uses -std=c++17 -fcoroutines-ts. But when I replace the combination with -std=c++20, it tells me it can't recognize co_await anymore. Then the test log shows:
Here is a -std=c++11 in the ending place so the -std=c++20 option doesn't work. I don't know how to move on. Could any one who is familiar with clang-tidy remove the use of -fcoroutines-ts in clang-tidy?