From c59162e0530c37c276105f346706b5428e1b1463 Mon Sep 17 00:00:00 2001 From: cyan4973 Date: Mon, 5 Jun 2017 00:12:13 -0700 Subject: [PATCH] minor fix for -Wdocumentation --- lib/common/zstd_internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/common/zstd_internal.h b/lib/common/zstd_internal.h index bd2ad10f..77f6e567 100644 --- a/lib/common/zstd_internal.h +++ b/lib/common/zstd_internal.h @@ -305,12 +305,12 @@ MEM_STATIC U32 ZSTD_highbit32(U32 val) void ZSTD_invalidateRepCodes(ZSTD_CCtx* cctx); +typedef enum { ZSTDb_not_buffered, ZSTDb_buffered } ZSTD_buffered_policy_e; /*! ZSTD_compressBegin_internal() : * innermost initialization function. Private use only. * expects params to be valid. * must receive dict, or cdict, or none, but not both. * @return : 0, or an error code */ -typedef enum { ZSTDb_not_buffered, ZSTDb_buffered } ZSTD_buffered_policy_e; size_t ZSTD_compressBegin_internal(ZSTD_CCtx* cctx, const void* dict, size_t dictSize, const ZSTD_CDict* cdict,