在以下示例中:
void foo (double *ptr)
{
const double * restrict const restr_ptr=ptr;
}
我收到此错误:
error: expected a ";" const double * restrict const restr_ptr=ptr;
^
我用 -std=c99 编译,使用 gcc 3.4
有任何想法吗?