From b2eba7f307d5ae634ff41bd88d5bd1659466d82d Mon Sep 17 00:00:00 2001 From: ramelg01 Date: Thu, 23 Dec 2021 08:32:08 +0000 Subject: Replacing non-inclusive terms with proper terms Partially-Resolves: COMPMID-4854 Signed-off-by: Ramy Elgammal Change-Id: Ic9757c89878b9b5a89680b5344de657f676c7bf2 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/6859 Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins Reviewed-by: Gunes Bayir --- support/ToolchainSupport.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'support') diff --git a/support/ToolchainSupport.h b/support/ToolchainSupport.h index d8c14411e8..f19a8da627 100644 --- a/support/ToolchainSupport.h +++ b/support/ToolchainSupport.h @@ -143,12 +143,12 @@ inline T fma(T x, T y, T z) * and writes the result to a character string buffer. * * @param[in] s Pointer to a character string to write to - * @param[in] n Up to buf_size - 1 characters may be written, plus the null terminator - * @param[in] fmt Pointer to a null-terminated multibyte string specifying how to interpret the data. + * @param[in] n Up to buf_size - 1 characters may be written, plus the null ending character + * @param[in] fmt Pointer to a null-ended multibyte string specifying how to interpret the data. * @param[in] args Arguments forwarded to snprintf. * * @return Number of characters that would have been written for a sufficiently large buffer - * if successful (not including the terminating null character), or a negative value if an error occurred. + * if successful (not including the ending null character), or a negative value if an error occurred. */ template inline int snprintf(char *s, size_t n, const char *fmt, Ts &&... args) @@ -258,12 +258,12 @@ inline T fma(T x, T y, T z) * and writes the result to a character string buffer. * * @param[in] s Pointer to a character string to write to - * @param[in] n Up to buf_size - 1 characters may be written, plus the null terminator - * @param[in] fmt Pointer to a null-terminated multibyte string specifying how to interpret the data. + * @param[in] n Up to buf_size - 1 characters may be written, plus the null ending character + * @param[in] fmt Pointer to a null-ended multibyte string specifying how to interpret the data. * @param[in] args Arguments forwarded to std::snprintf. * * @return Number of characters that would have been written for a sufficiently large buffer - * if successful (not including the terminating null character), or a negative value if an error occurred. + * if successful (not including the ending null character), or a negative value if an error occurred. */ template inline int snprintf(char *s, std::size_t n, const char *fmt, Ts &&... args) -- cgit v1.2.1