From: Yann Collet Date: Fri, 14 Jul 2017 01:58:30 +0000 (-0700) Subject: fixed clang's -Wdocumentation X-Git-Tag: v1.3.1^2~29^2 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F762%2Fhead;p=thirdparty%2Fzstd.git fixed clang's -Wdocumentation --- diff --git a/lib/common/zstd_errors.h b/lib/common/zstd_errors.h index fbc13d19f..a645a9e8e 100644 --- a/lib/common/zstd_errors.h +++ b/lib/common/zstd_errors.h @@ -71,7 +71,7 @@ typedef enum { convert a `size_t` function result into a `ZSTD_ErrorCode` enum type, which can be used to compare with enum list published above */ ZSTDERRORLIB_API ZSTD_ErrorCode ZSTD_getErrorCode(size_t functionResult); -ZSTDERRORLIB_API const char* ZSTD_getErrorString(ZSTD_ErrorCode code); /*< Same as ZSTD_getErrorName, but using a `ZSTD_ErrorCode` enum argument */ +ZSTDERRORLIB_API const char* ZSTD_getErrorString(ZSTD_ErrorCode code); /**< Same as ZSTD_getErrorName, but using a `ZSTD_ErrorCode` enum argument */ #if defined (__cplusplus)