There is no point in creating a const
reference to a literal numeric value. Most likely the intent was not to create a reference, but
a constant value.
Noncompliant code example
const int & weekdayCount = 7; // Noncompliant
Compliant solution
const int weekdayCount = 7;