This is an archive of the discontinued LLVM Phabricator instance.

Clean carriage returns from lib/ and include/. NFC.
ClosedPublic

Authored by Quuxplusone on Apr 12 2018, 1:56 PM.

Details

Summary

Clean carriage returns from lib/ and include/. NFC.
(I have to make this change locally in order for git diff to show sane output after I edit a file, so I might as well ask for it to be committed. I don't have commit privs myself.)
(Without this patch, git rebaseing any change involving SemaDeclCXX.cpp is a real nightmare. :( So while I have no right to ask for this to be committed, geez would it make my workflow easier if it were.)

Here's the command I used to reformat things. (Requires bash and OSX/FreeBSD sed.)

git grep -l $'\r' lib include | xargs sed -i -e $'s/\r//'
find lib include -name '*-e' -delete

Diff Detail

Repository
rC Clang

Event Timeline

Quuxplusone edited the summary of this revision. (Show Details)Apr 13 2018, 11:08 AM
Quuxplusone added a reviewer: malcolm.parsons.
malcolm.parsons accepted this revision.Apr 13 2018, 11:17 AM

LGTM. Can't commit right now - using phone.

This revision is now accepted and ready to land.Apr 13 2018, 11:17 AM
This revision was automatically updated to reflect the committed changes.