=?utf-8?q?Bal=C3=A1zs_K=C3=A9ri?= <[email protected]> Message-ID: In-Reply-To: <llvm.org/llvm/llvm-project/pull/[email protected]>
================ @@ -0,0 +1,55 @@ +.. title:: clang-tidy - bugprone-assignment-in-selection-statement + +bugprone-assignment-in-selection-statement +========================================== + +Finds assignments within selection statements. +Such assignments may indicate programmer error because they may have been +intended as equality tests. The selection statements are conditions of ``if`` +and loop (``for``, ``while``, ``do``) statements, condition of conditional ---------------- zwuis wrote: Conditional operator is another name of `? :`. https://github.com/llvm/llvm-project/pull/180219 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
