You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ap...@apache.org on 2019/01/29 12:04:44 UTC

[arrow] branch master updated: ARROW-4417: [C++] Fix doxygen build

This is an automated email from the ASF dual-hosted git repository.

apitrou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new c4c108b  ARROW-4417: [C++] Fix doxygen build
c4c108b is described below

commit c4c108b2112b9809e0342e3d714fcd0ab2c9053b
Author: Antoine Pitrou <an...@python.org>
AuthorDate: Tue Jan 29 13:04:36 2019 +0100

    ARROW-4417: [C++] Fix doxygen build
    
    Author: Antoine Pitrou <an...@python.org>
    
    Closes #3521 from pitrou/ARROW-4417-doxygen-fix and squashes the following commits:
    
    9ebfe1b9 <Antoine Pitrou> ARROW-4417:  Fix doxygen build
---
 cpp/src/arrow/compute/kernel.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/cpp/src/arrow/compute/kernel.h b/cpp/src/arrow/compute/kernel.h
index bf6a546..93bec75 100644
--- a/cpp/src/arrow/compute/kernel.h
+++ b/cpp/src/arrow/compute/kernel.h
@@ -162,6 +162,8 @@ class ARROW_EXPORT UnaryKernel : public OpKernel {
  public:
   /// \brief Executes the kernel.
   ///
+  /// \param[in] ctx The function context for the kernel
+  /// \param[in] input The kernel input data
   /// \param[out] out The output of the function. Each implementation of this
   /// function might assume different things about the existing contents of out
   /// (e.g. which buffers are preallocated).  In the future it is expected that