-
Notifications
You must be signed in to change notification settings - Fork 478
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
Implementation of the datetime (with up to nanoseconds) has been added #1089
Conversation
The build failures must be fixed, of course, but beyond this could I ask you to please avoid mixing up whitespace-only changes and variable renaming with the significant changes? If you really want to, you can make them in separate commits (or maybe separate PRs later), but having them all here makes it much harder to review the changes than necessary, so could you please undo all the cosmetic changes? TIA! |
Sorry, this was not on purpose - these are IDE settings on my project. I've undone it |
Thanks for the updates, but there still seems to be a big number of unrelated changes (e.g. all MSVC-specific stuff) as well as many changes to the tests which I wouldn't expect (I'd only expect additions, not changes to the existing tests) and the PR is just huge -- it's going to be very hard to find time to review it, so any further efforts to reduce its size would be welcome. One global question is why exactly do we need the third-party date header? Can't we live with just the functionality that standard chrono provides? |
I've created new PR as diff -w. I hope this reduces the number of unrelated changes.
Third party header is https://howardhinnant.github.io/date/date.html. I can't do it myself using chrono. I've read this date.h is a part of of C++20 |
No description provided.