VS2008编译出现问题:error C2485: “__restrict”: 无法识别的扩展属性 解决办法

错误:Error3 error C2485: '__restrict' : unrecognized extended attribute f:\program files\microsoft visual studio 8\vc\include\stdlib.h 638 

 


解决办法:我在用VC编译某开源库时也遇到这个问题
参考这个帖子
http://www.codeproject.com/Messages/2651289/Re-i-got-a-compiling-error-like-error-C2485-__rest.aspx

搜索"#define restrict __restrict",然后将之注释即可,似乎VC本身已经有restrict,而不含__restrict

你可能感兴趣的:(编译错误)