fatal error C1903: unable to recover from previous error(s); stopping compilation

 fatal error C1903: unable to recover from previous error(s); stopping compilation

遇到这种问题有时候是自己不小心导致的{}问题或者其他语法错误

如果不是语法问题,那就得,考虑VC9的自身bug,微软官方有提供一种解决方法:

在所在工程的属性里面进行如下设置

property-->

C\C++--> General -->Debug Information format ======= C7 Compatible (/Z7)

C\C++--> Code Generation-->Enable String Pooling ====== Yes (/GF)

Linker-->Debuging -->General Debug Info  ======= Yes (/DEBUG)


我试了一下,的确能用,但是总不放心

你可能感兴趣的:(C语言,mfc)