-
Notifications
You must be signed in to change notification settings - Fork 76
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
Implement QAnyStringView #995
Conversation
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.
Hi @redstrate , thanks for working on this!
It can hopefully really improve some of the Rust-C++ string interop 🤞
For now, some initial comments, that you may already be aware of.
If you think this PR isn't ready for review yet, also consider converting it to a draft under the "reviewers" section.
0dc4e83
to
1ef4fe2
Compare
8622385
to
6243813
Compare
6243813
to
9cb150e
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #995 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 71 71
Lines 11928 11928
=========================================
Hits 11928 11928 ☔ View full report in Codecov by Sentry. |
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, lets see what Leon thinks when he is back
9cb150e
to
22e70c2
Compare
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 :)
@redstrate The changes to the assert_alignment_and_size macro have broken the rebase. Can you please update the check :) |
f7d4d31
f7d4d31
to
9213d75
Compare
This is a read-only string type that's used in several new Qt6 APIs such as QQmlApplicationEngine::loadFromModule. Fixes KDAB#629
9213d75
to
cc4646d
Compare
I've updated this PR, hopefully it passes CI now 🤞 |
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 :-)
This is a read-only string type that's used in several new Qt6 APIs such as QQmlApplicationEngine::loadFromModule.
Fixes #629