]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
minor fix for -Wdocumentation
authorcyan4973 <yann.collet.73@gmail.com>
Mon, 5 Jun 2017 07:12:13 +0000 (00:12 -0700)
committercyan4973 <yann.collet.73@gmail.com>
Mon, 5 Jun 2017 07:12:13 +0000 (00:12 -0700)
lib/common/zstd_internal.h

index bd2ad10ff2c2b24fa54bfbcd0b128121c927f1ea..77f6e56726a7cd85aaf6239ea0635cc7460b1567 100644 (file)
@@ -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,