-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
GH-40366: [C++] Remove const qualifier from Buffer::mutable_span_as #40367
GH-40366: [C++] Remove const qualifier from Buffer::mutable_span_as #40367
Conversation
|
@github-actions crossbow submit -g cpp |
Revision: 58b3bf6 Submitted crossbow builds: ursacomputing/crossbow @ actions-67a429d9a4 |
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.
+1
After merging your PR, Conbench analyzed the 0 benchmarking runs that have been run so far on merge-commit ee1a8c3. None of the specified runs were found on the Conbench server. The full Conbench report has more details. |
…n_as (apache#40367) ### Rationale for this change The const qualifier on `Buffer:mutable_span_as` prevents it from calling the non-const `Buffer::mutable_data_as` ### What changes are included in this PR? See issue title ### Are these changes tested? No, I believe this is a simple oversight ### Are there any user-facing changes? Yes, `Buffer::mutable_span_as` loses it's const qualifier * GitHub Issue: apache#40366 Authored-by: Simon Perkins <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
…n_as (apache#40367) ### Rationale for this change The const qualifier on `Buffer:mutable_span_as` prevents it from calling the non-const `Buffer::mutable_data_as` ### What changes are included in this PR? See issue title ### Are these changes tested? No, I believe this is a simple oversight ### Are there any user-facing changes? Yes, `Buffer::mutable_span_as` loses it's const qualifier * GitHub Issue: apache#40366 Authored-by: Simon Perkins <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
Rationale for this change
The const qualifier on
Buffer:mutable_span_as
prevents it from calling the non-constBuffer::mutable_data_as
What changes are included in this PR?
See issue title
Are these changes tested?
No, I believe this is a simple oversight
Are there any user-facing changes?
Yes,
Buffer::mutable_span_as
loses it's const qualifier