From 3b0cff3c33724c9dd538a2c1a3f326a879a438f8 Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Thu, 13 Jul 2017 18:58:30 -0700 Subject: [PATCH] fixed clang's -Wdocumentation --- lib/common/zstd_errors.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/common/zstd_errors.h b/lib/common/zstd_errors.h index fbc13d19..a645a9e8 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)