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

remove empty comments

parent 4746caeb
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