Remove trailing spaces.

This commit is contained in:
Wilson Snyder 2019-08-08 17:53:49 -04:00
parent 81e806e895
commit f74af949da
3 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@ Checks: 'clang-diagnostic-*,clang-analyzer-*,*,-modernize*,-hicpp*,-and
WarningsAsErrors: '' WarningsAsErrors: ''
HeaderFilterRegex: '' HeaderFilterRegex: ''
FormatStyle: none FormatStyle: none
CheckOptions: CheckOptions:
- key: google-readability-braces-around-statements.ShortStatementLines - key: google-readability-braces-around-statements.ShortStatementLines
value: '2' value: '2'
- key: google-readability-namespace-comments.SpacesBeforeComments - key: google-readability-namespace-comments.SpacesBeforeComments

View File

@ -72,7 +72,7 @@ sub test {
run("cd $cc_dir/info ; lcov -c -d ../../../../$dir -o app_test_${outname}.info"); run("cd $cc_dir/info ; lcov -c -d ../../../../$dir -o app_test_${outname}.info");
} }
} }
if ($Opt_Stage <= 3) { if ($Opt_Stage <= 3) {
# lcov doesn't have a control file to override single lines, so replicate the sources # lcov doesn't have a control file to override single lines, so replicate the sources
print "Stage 3: Clone sources under $cc_dir\n"; print "Stage 3: Clone sources under $cc_dir\n";

View File

@ -132,7 +132,7 @@ sub edit_file {
foreach my $lineno (sort {$a <=> $b} keys %$editlines) { foreach my $lineno (sort {$a <=> $b} keys %$editlines) {
push @editits, $lineno if $editlines->{$lineno}{editit}; push @editits, $lineno if $editlines->{$lineno}{editit};
} }
return if $#editits < 0; return if $#editits < 0;
if (ignore($filename)) { if (ignore($filename)) {
print "%Warning: Ignoring $filename\n"; print "%Warning: Ignoring $filename\n";