Skip to content
Snippets Groups Projects
Commit 8f085a0f authored by Andrew Cooks's avatar Andrew Cooks
Browse files

Merge branch 'topic/cleanup/remove-empty-comments'

parents 4746caeb 31eaf15a
No related branches found
No related tags found
No related merge requests found
......@@ -126,6 +126,11 @@ sed -i 's|" STRING_FMT "|%s|g' *.c *.h
sed -i 's|STRING_FMT\s\+"|"%s|g' *.c *.h
perl -0777 -i -pe 's|STRING_FMT\s*\n\s*"|"%s|g' *.c *.h
# remove single line empty comments
perl -0777 -i -pe 's|/\*\s*\*/\n||g' *.c *.h
# remove inline empty comments
sed -i 's|/\*\s*\*/||g' *.c *.h
# Insert new cleanup steps above this comment.
# Keep Lindent as the last step.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment