aboutsummaryrefslogtreecommitdiff
path: root/src/common/utils/Log.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/utils/Log.h')
-rw-r--r--src/common/utils/Log.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/utils/Log.h b/src/common/utils/Log.h
index 5b049d0de6..f3ae38a57c 100644
--- a/src/common/utils/Log.h
+++ b/src/common/utils/Log.h
@@ -134,9 +134,9 @@ logParamsImpl(std::vector<std::string> &data_registry, const std::tuple<Tp...> &
/** Function Template with variable number of inputs to collect all the passed parameters from
* the logging macro ARM_COMPUTE_LOG_PARAMS(...)
*
- * @param[in] ...ins The input parameters in the variadic template, taken by reference, (not by value) to avoid
- * detecting T as an abstract data type when passing any of these parameters as L-value reference
- * to an abstract type.
+ * @param[in] ...ins The input parameters in the variadic template, taken by universal references Ts.. &&, (not by value)
+ * to avoid detecting T as an abstract data type when passing any of these parameters as an L-value
+ * reference to an abstract type.
*
* @return Vector of the parameters' data in a string format
*/