This rule is Obsolete | |
Synopsis: | Do not use spaces around . or ->, nor between unary operators and operands |
Language: | C++ |
Severity Level: | 10 |
Category: | Style |
Description: |
This gives a uniform appearance to the code. Examples member selection: obj.Foo() pPoint->x Singleton::Instance() Examples unary operators: ~b if (!bSuccessful) a = -b a++ --a |
Literature References: |
Ellemtel Rec. 27 |