contrib/python-zstandard/zstd/common/fse_decompress.c
changeset 40122 73fef626dae3
parent 37495 b1fb341d8a61
child 43999 de7838053207
--- a/contrib/python-zstandard/zstd/common/fse_decompress.c	Tue Sep 25 20:55:03 2018 +0900
+++ b/contrib/python-zstandard/zstd/common/fse_decompress.c	Mon Oct 08 16:27:40 2018 -0700
@@ -49,7 +49,7 @@
 *  Error Management
 ****************************************************************/
 #define FSE_isError ERR_isError
-#define FSE_STATIC_ASSERT(c) { enum { FSE_static_assert = 1/(int)(!!(c)) }; }   /* use only *after* variable declarations */
+#define FSE_STATIC_ASSERT(c) DEBUG_STATIC_ASSERT(c)   /* use only *after* variable declarations */
 
 /* check and forward error code */
 #define CHECK_F(f) { size_t const e = f; if (FSE_isError(e)) return e; }