Support formatting of subseconds - #3115
Merged
Merged
Conversation
Contributor
|
Please rebase. |
Contributor
Author
|
Rebased on master. |
vitaut
requested changes
Oct 1, 2022
Contributor
Author
|
I reworked everything again.
|
phprus
reviewed
Oct 3, 2022
phprus
reviewed
Oct 3, 2022
vitaut
requested changes
Oct 8, 2022
vitaut
requested changes
Oct 12, 2022
vitaut
left a comment
Contributor
There was a problem hiding this comment.
Mostly looks good, just a few more minor comments.
vitaut
approved these changes
Oct 12, 2022
Contributor
|
Thank you! |
Contributor
|
Fuzzer discovered an issue with this change. The following code #include <fmt/chrono.h>
int main() {
fmt::format("{:%S}", std::chrono::duration<char, std::ratio<1, 100> >(0x80));
}now results in an assertion failure: |
Merged
Contributor
Contributor
Author
|
Thanks for the fix and sorry that I have overseen this! |
Contributor
|
Here's a link to the oss-fuzz report for future reference: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=52380. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The formatting symbol
{%S}should also print the subseconds, e.g.,fmt::format("{:%S}", std::chrono::microseconds(1234567))should print "01.234567".Didn't implement it for localized output as this localized output looks like black magic to me... may be we can omit it for the localized formatting for the first time?