Document the BMI2 default() functions

This commit is contained in:
Nick Terrell
2020-08-24 14:44:33 -07:00
parent cebe0b5c0b
commit 6d2f750b37
3 changed files with 4 additions and 0 deletions
+1
View File
@@ -353,6 +353,7 @@ FORCE_INLINE_TEMPLATE size_t FSE_decompress_wksp_body(
}
}
/* Avoids the FORCE_INLINE of the _body() function. */
static size_t FSE_decompress_wksp_body_default(void* dst, size_t dstCapacity, const void* cSrc, size_t cSrcSize, unsigned maxLog, void* workSpace, size_t wkspSize)
{
return FSE_decompress_wksp_body(dst, dstCapacity, cSrc, cSrcSize, maxLog, workSpace, wkspSize, 0);