处理“error C2466: 不能分配常量大小为0 的数组”

用C/C++写PHP的扩展模块,如果VS2005编译,可能会出现下面的错误:

<VS2005安装目录>\VC\include\sys/stat.inl(44) : error C2466: 不能分配常量大小为 0 的数组

 

,出现这种情况时,只需在 <VS2005安装目录>\vc\include\malloc.h 文件中找到:

#define _STATIC_ASSERT(expr) typedef char __static_assert_t[ (expr) ]

 

并改成:

#ifdef PHP_WIN32
#define _STATIC_ASSERT(expr) typedef char __static_assert_t[ (expr)?(expr):1 ]
#else
#define _STATIC_ASSERT(expr) typedef char __static_assert_t[ (expr) ]
#endif

 就可以了。 

你可能感兴趣的:(error)