-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Running dos2unix on all .cpp, .h, .mk and Makefile #40
Conversation
Please leave them as-is. Adjust your git settings to be correct on your platform please. -----Original Message----- Pardon the lengthy diff. This is in line with our discussion of getting the entire codebase standardized. You can view, comment on, or merge this pull request online at: [The entire original message is not included.] |
Assuming from your comment - we accept as our standard the usage of |
Pardon the lengthy diff. This is in line with our discussion of getting the entire codebase standardized.
There are no functional code changes - only removal of carriage returns with the following command
for x in $(find . -name "*.cpp"); do dos2unix $x; done
If you think this creates too much noise - feel free to disregard.