Hi I don't know if this is the best place to ask this but clang-tidy doesn't work for me
I'm using it on windows, I have the standard library from msvc
This is my command: .\clang-tidy .\main.c -checks=clang-analyzer-*
This is main.c:
#include <stdio.h>
int main() {
int x; // Uninitialized variable
printf("Hello, world!\n");
return 0;
}
when I run the command, clang-tidy only outputs a new line, no text or anything else