From c52021d03d5a8ec6aa22bc0fdb32705048f5a66d Mon Sep 17 00:00:00 2001 From: Wes McKinney Date: Thu, 18 Jun 2020 21:12:28 -0500 Subject: [PATCH] Fix doxygen warning in arrow/compute/api_scalar.h --- cpp/src/arrow/compute/api_scalar.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cpp/src/arrow/compute/api_scalar.h b/cpp/src/arrow/compute/api_scalar.h index 69ca0147df6..e4abd13abc2 100644 --- a/cpp/src/arrow/compute/api_scalar.h +++ b/cpp/src/arrow/compute/api_scalar.h @@ -45,6 +45,7 @@ struct ArithmeticOptions : public FunctionOptions { /// /// \param[in] left the first addend /// \param[in] right the second addend +/// \param[in] options arithmetic options (overflow handling), optional /// \param[in] ctx the function execution context, optional /// \return the elementwise sum ARROW_EXPORT @@ -57,6 +58,7 @@ Result Add(const Datum& left, const Datum& right, /// /// \param[in] left the value subtracted from (minuend) /// \param[in] right the value by which the minuend is reduced (subtrahend) +/// \param[in] options arithmetic options (overflow handling), optional /// \param[in] ctx the function execution context, optional /// \return the elementwise difference ARROW_EXPORT @@ -69,6 +71,7 @@ Result Subtract(const Datum& left, const Datum& right, /// /// \param[in] left the first factor /// \param[in] right the second factor +/// \param[in] options arithmetic options (overflow handling), optional /// \param[in] ctx the function execution context, optional /// \return the elementwise product ARROW_EXPORT