-
Notifications
You must be signed in to change notification settings - Fork 118
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
BBS: pickle is now a std::vector<char> #2822
Conversation
✔️ 9e74c50 -> Azure artifacts URL |
✔️ 9e74c50 -> Azure artifacts URL |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
✔️ 721a81b -> Azure artifacts URL |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #2822 +/- ##
==========================================
- Coverage 67.17% 67.17% -0.01%
==========================================
Files 563 564 +1
Lines 104283 104256 -27
==========================================
- Hits 70056 70033 -23
+ Misses 34227 34223 -4 ☔ View full report in Codecov by Sentry. |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
✔️ dd941f7 -> Azure artifacts URL |
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.
To my understanding this PR changes the following:
char*
is replaced with astd::vector<char>
. The choice is becauseMessageItem
needs to destinguish between a pickle (std::vector<char>
) and a string (std::string
).
This enables a few simplifications, e.g. the size is returned as part of the std::vector
. There's one occurrence of where we introduce an additional copy.
✔️ be83cff -> Azure artifacts URL |
This comment has been minimized.
This comment has been minimized.
✔️ 8f3626e -> Azure artifacts URL |
This comment has been minimized.
This comment has been minimized.
Quality Gate passedIssues Measures |
✔️ c7309d4 -> Azure artifacts URL |
No description provided.