lidavidm commented on a change in pull request #11313:
URL: https://github.com/apache/arrow/pull/11313#discussion_r724214691
##########
File path: cpp/src/arrow/compute/kernels/aggregate_tdigest.cc
##########
@@ -121,7 +134,7 @@ struct TDigestInitState {
TDigestInitState(KernelContext* ctx, const DataType& in_type,
const TDigestOptions& options)
- : ctx(ctx), in_type(in_type), options(options) {}
+ : ctx(ctx), in_type(std::move(in_type)), options(options) {}
Review comment:
Ah, this was leftover and I meant to remove it - thanks for catching it.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]