Zero before decimal point cc4m_logo_inline

IDSTAT-21
TitleAlways use a zero before the decimal point in numeric expressions.
PriorityRecommended
Severity level9
DescriptionAlways use a zero before the decimal point in numeric expressions.
RationaleIncreases the readability of the code.

Avoid:

THRESHOLD = .5;

Instead use:

THRESHOLD = 0.5;