-
Notifications
You must be signed in to change notification settings - Fork 8
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
C++ const enforcing #221
base: master
Are you sure you want to change the base?
C++ const enforcing #221
Conversation
Changing the C <ABC.h> format to the C++ <cABC>
changing typedefs to usings for increased readability
Error prone code let to one input
Proper C++ standard header name
C style to C++ style
Removed human redundancy
Put const wherever it can be useful without touching the function signatures Also folded T v; v = u; to T v = u;
typedefs become usings for loop now in range mode
How nice the SFML dependency can't build |
I don't think it's a good idea to still add new dependencies. Is it possible without them? if not, I'll see if I can add them to Travis. |
It's actually not a dependency we added ourselves, it's the last master version of SFML that requires it |
Hmm. Okay. |
If it's SFML then it could be possible to include it in our repository so it's not a system requirement but just included in the build. |
Night session of const enforcing and changing C includes to C++ ones