Issue | 143348 |
---|---|
Summary | [clang-tidy] `readability-braces-around-statements` not detected `else containing if` without braces |
Labels | clang-tidy |
Assignees | |
Reporter | GINN-Imp |
https://godbolt.org/z/3TKjKen34 ```c int a,b,c; int main(){ if(a){ c=1; } else //The expected warning position if(b){ c = 0; }
return 0; } ```
_______________________________________________ llvm-bugs mailing list llvm-bugs@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs