rspec/rules/S1764/cfamily/rule.adoc
Fred Tingaud d3cfe19d7e
Fix broken or dangerous backquotes
Co-authored-by: Marco Borgeaud <89914223+marco-antognini-sonarsource@users.noreply.github.com>
2023-10-30 10:33:56 +01:00

76 lines
1.7 KiB
Plaintext

== Why is this an issue?
Using the same value on both sides of a binary operator is a code defect. In the case of logical operators, it is either a copy/paste error and, therefore, a bug, or it is simply duplicated code and should be simplified. In the case of most binary mathematical operators, having the same value on both sides of an operator yields predictable results and should be simplified as well.
=== Exceptions
The following are ignored:
* The expression `1 << 1`
* When an increment or decrement operator is used, ex: ``+++*p++ == *p+++++``
* Bitwise operators `|, &, ^`
* Arithmetic operators `+, *`
* Assignment operators `=, +=, *=`
=== Code examples
==== Noncompliant code example
[source,cpp]
----
void foo(int a, int b) {
if ( a == a ) { // Noncompliant: always true
// ...
}
if ( a != a ) { // Noncompliant: always false
// ...
}
if ( (a == b) && (a == b) ) { // Noncompliant: if the first condition is true, the second one is too
// ...
}
if ( (a == b) || (a == b) ) { // Noncompliant: if the first condition is true, the second one is too
// ...
}
if ( 5 / 5 ) { // Noncompliant: always 1
// ...
}
if ( 5 - 5 ) { // Noncompliant: always 0
// ...
}
}
----
== Resources
=== Standards
* https://wiki.sei.cmu.edu/confluence/x/5dUxBQ[CERT, MSC12-C.] - Detect and remove code that has no effect or is never executed
=== Related rules
* S1656 detects self-assignments
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
include::../message.adoc[]
include::../highlighting.adoc[]
'''
== Comments And Links
(visible only on this page)
include::../comments-and-links.adoc[]
endif::env-github,rspecator-view[]