60 lines
1.4 KiB
Plaintext
Raw Permalink Normal View History

== Why is this an issue?
2021-04-28 16:49:39 +02:00
Unless you are in a library codebase context, functions that are declared in your program but never executed are dead code that should be removed. Cleaning out dead code decreases the size of the maintained codebase, making it easier to understand the program and preventing bugs from being introduced.
*Note:* S1144 is a subset of this rule; hence, it should be deactivated when this rule is activated.
=== Noncompliant code example
2021-04-28 16:49:39 +02:00
2022-02-04 17:28:24 +01:00
[source,cpp]
2021-04-28 16:49:39 +02:00
----
void unusedStaticFunction() { // Noncompliant
}
void unusedGlobalFunction() { // Noncompliant: it is not called in the entire program
}
void undefinedGlobalFunction(); // Noncompliant
class A {
public:
A(int i) : i(i){} // Compliant it is called in "main"
void startUsed() { // Compliant, the member function "startUsed" is called in "main"
}
void startUnused() { // Noncompliant, the member function "startUnused" is not called in the program
}
private:
A(): i(0) { // Compliant, private and deleted constructor are an exception
}
int i;
};
int main() // Compliant, "main" is an exception.
{
A a{2};
a.startUsed();
}
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
=== Message
Remove this unused function.
'''
== Comments And Links
(visible only on this page)
=== relates to: S1144
endif::env-github,rspecator-view[]