提交 68b5ec93 编写于 作者: S Sean Barrett

fix cdecl

上级 2da2806d
......@@ -1085,7 +1085,11 @@ static void compute_accelerated_huffman(Codebook *c)
}
}
static int __cdecl uint32_compare(const void *p, const void *q)
static int
#ifdef _MSC_VER // might also be needed on non-msvc Windows builds, so should be #ifdef WINDOWS?
__cdecl
#endif
uint32_compare(const void *p, const void *q)
{
uint32 x = * (uint32 *) p;
uint32 y = * (uint32 *) q;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册