-
Notifications
You must be signed in to change notification settings - Fork 113
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
remove string_view STL dependency #703
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.
I don't think CI covers SNMALLOC_TRACE. Could you check that it still builds with your changes.
Thanks
The CI failures are due to macos-12 being obsolete. We should probably update the images |
I've just pushed a PR to move the CI forward to newer versions. Hopefully will be smooth. |
Rebasing should fix the CI. |
@@ -159,9 +159,7 @@ namespace snmalloc | |||
* The following are supported as arguments: | |||
* | |||
* - Characters (`char`), printed verbatim. | |||
* - Strings (anything convertible to `std::string_view`), typically string |
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.
As we've lost the other types that can flow into this, I am left wondering if we actually use this append function?
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.
As I guess I'm wondering if we should inline the functionality into append?
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.
Sorry, was busy on other stuffs. Inling should work except the two definitions will run into ambiguity.
d3e042e
to
a322264
Compare
a322264
to
21e2570
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. Thanks for addressing the earlier review.
No description provided.