14 lines
167 B
Plaintext
14 lines
167 B
Plaintext
Namespaces with no lines of code clutter a project and should be removed.
|
|
|
|
|
|
== Noncompliant Code Example
|
|
|
|
----
|
|
namespace MyEmptyNamespace // Noncompliant
|
|
{
|
|
|
|
}
|
|
----
|
|
|
|
|