##// END OF EJS Templates
check-code: in C code, prevent space before closing parenthesis
Laurent Charignon -
r24453:65f1a296 default
parent child Browse files
Show More
@@ -335,6 +335,7 b' cpats = ['
335 (r'(while|if|do|for)\(', "use space after while/if/do/for"),
335 (r'(while|if|do|for)\(', "use space after while/if/do/for"),
336 (r'return\(', "return is not a function"),
336 (r'return\(', "return is not a function"),
337 (r' ;', "no space before ;"),
337 (r' ;', "no space before ;"),
338 (r'[^;] \)', "no space before )"),
338 (r'[)][{]', "space between ) and {"),
339 (r'[)][{]', "space between ) and {"),
339 (r'\w+\* \w+', "use int *foo, not int* foo"),
340 (r'\w+\* \w+', "use int *foo, not int* foo"),
340 (r'\W\([^\)]+\) \w+', "use (int)foo, not (int) foo"),
341 (r'\W\([^\)]+\) \w+', "use (int)foo, not (int) foo"),
General Comments 0
You need to be logged in to leave comments. Login now