-
-
Notifications
You must be signed in to change notification settings - Fork 71
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
Add (partial) implementations for char8_t
#192
Merged
Merged
Conversation
This file contains 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
Reuse the code for further modifications
Flamefire
force-pushed
the
utf_chartypes
branch
3 times, most recently
from
September 11, 2023 12:28
30a53c7
to
a5fb543
Compare
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## develop #192 +/- ##
===========================================
- Coverage 94.69% 94.60% -0.10%
===========================================
Files 113 114 +1
Lines 9857 9857
===========================================
- Hits 9334 9325 -9
- Misses 523 532 +9
... and 2 files with indirect coverage changes Continue to review full report in Codecov by Sentry.
|
Allows to e.g. convert `std::u8string`s, translate them and run boundary analysis. Formatting isn't possible due to lack of facets (more specifically: their IDs) in the standard libraries
std libraries don't provide the required support (e.g. missing VTables or facet IDs)
Flamefire
force-pushed
the
utf_chartypes
branch
from
September 12, 2023 08:07
a5fb543
to
73da0ec
Compare
Flamefire
force-pushed
the
utf_chartypes
branch
from
September 12, 2023 11:18
73da0ec
to
efed993
Compare
Flamefire
force-pushed
the
utf_chartypes
branch
from
September 12, 2023 15:01
5cea4e0
to
9d45cb1
Compare
…_t>` Allow to disable for non-conforming compilers/stdlibs
Flamefire
force-pushed
the
utf_chartypes
branch
from
September 13, 2023 07:20
9d45cb1
to
324a667
Compare
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.
This allows usages like
as found in #190
See also #79