js8544 commented on code in PR #35787:
URL: https://github.com/apache/arrow/pull/35787#discussion_r1245419203
##########
cpp/src/arrow/compute/kernel.h:
##########
@@ -293,6 +298,10 @@ class ARROW_EXPORT OutputType {
OutputType(Resolver resolver) // NOLINT implicit construction
: kind_(COMPUTED), resolver_(std::move(resolver)) {}
+ /// \brief For backward compatibility
+ OutputType(ResolverFuncPtr resolver) // NOLINT implicit construction
+ : kind_(COMPUTED), resolver_(std::move(resolver)) {}
Review Comment:
Nevermind, some compilation fails due to ambiguous call. I guess I'll have
to change all occurences.
--
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]