coding-style: Don't use hex with shift operator

This commit is contained in:
Jeevaka Badrappan 2011-02-05 06:29:05 -08:00 committed by Marcel Holtmann
parent c70805bdee
commit b363b8f0cf
1 changed files with 12 additions and 0 deletions

View File

@ -294,6 +294,18 @@ void foo() // Wrong
{
}
M16: Don't use hex value with shift operators
==============================================
The expression argument to the shift operators should not be in hex.
Example:
1)
1 << y
2)
0x1 << y // Wrong
O1: Shorten the name
====================
Better to use abbreviation, rather than full name, to name a variable,