-
Notifications
You must be signed in to change notification settings - Fork 915
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
Move standalone UTF8 functions from string_view.hpp to utf8.hpp #10369
Move standalone UTF8 functions from string_view.hpp to utf8.hpp #10369
Conversation
Codecov Report
@@ Coverage Diff @@
## branch-22.04 #10369 +/- ##
=============================================
Coverage 10.58% 10.58%
=============================================
Files 125 125
Lines 21058 21058
=============================================
Hits 2228 2228
Misses 18830 18830 Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approving ops-codeowner
file changes
@gpucibot merge |
1 similar comment
@gpucibot merge |
Move some standalone UTF8 functions that were defined in
string_view.hpp
to a newdetails/utf8.hpp
. While working on #10270 and reworking some regex utilities, the standalone functions are useful without needing to include thestring_view
class definition. These can be included and used in.cpp
host source files as needed as well.This is purely for cleanup and convenience. No actual functions have been added, updated or removed.