added ZSTD_createDDict_byReference() body

This commit is contained in:
Yann Collet
2016-12-21 19:25:15 +01:00
parent 4e5eea61a8
commit 0819abe3c1
3 changed files with 20 additions and 8 deletions
+1 -1
View File
@@ -39,7 +39,7 @@ extern "C" {
#endif
/* code only tested on 32 and 64 bits systems */
#define MEM_STATIC_ASSERT(c) { enum { XXH_static_assert = 1/(int)(!!(c)) }; }
#define MEM_STATIC_ASSERT(c) { enum { MEM_static_assert = 1/(int)(!!(c)) }; }
MEM_STATIC void MEM_check(void) { MEM_STATIC_ASSERT((sizeof(size_t)==4) || (sizeof(size_t)==8)); }