I am trying to run clang-tidy directly from the command line:
clang-tidy –
and it seems like clang-tidy thinks it is parsing C:
…
error: ‘uuid’ attribute is not supported in C
…
error: invalid argument ‘-std=c++1z’ not allowed with ‘C’…
How can I tell clang-tidy that the code is C++?
Tiago