Skip to content
This repository was archived by the owner on Jul 13, 2019. It is now read-only.

Commit b24aa6f

Browse files
mattyclarksontkruse
authored andcommitted
Allow single line lambdas
1 parent 197a285 commit b24aa6f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

cpplint.py

+3
Original file line numberDiff line numberDiff line change
@@ -4459,6 +4459,9 @@ def CheckStyle(filename, clean_lines, linenum, file_extension, nesting_state,
44594459
'Lines should be <= %i characters long' % _line_length)
44604460

44614461
if (cleansed_line.count(';') > 1 and
4462+
# allow simple single line lambdas
4463+
not Match(r'^[^{};]*\[[^\[\]]*\][^{}]*\{[^{}\n\r]*\}',
4464+
line) and
44624465
# for loops are allowed two ;'s (and may run over two lines).
44634466
cleansed_line.find('for') == -1 and
44644467
(GetPreviousNonBlankLine(clean_lines, linenum)[0].find('for') == -1 or

0 commit comments

Comments
 (0)