This rule is Obsolete | |
Synopsis: | Do not use spaces directly before and after brackets |
Language: | C++ |
Severity Level: | 10 |
Category: | Style |
Description: |
This gives a uniform appearance to the code. Examples: const SHORT anNumbers[3] = {10, 20, 30} Foo(10) a = (b + c) * d |