debug模式下编译,出现了这个warning,什么意思,如何解决?
D:\****.cpp(4) : warning C4651: '/D__BOUNDSCHECKER__=6.01' specified for precompiled header but not for current compile
问题点数:100、回复次数:2Top
1 楼laiyiling(陌生人[MVP])回复于 2004-09-04 11:04:45 得分 80
Compiler Warning (level 1) C4651
'definition' specified for precompiled header but not for current compile
The definition was specified when the precompiled header was generated, but not in this compilation.
The definition will be in effect inside the precompiled header, but not in the rest of the code
boundschecker帮你检查程序中内容泄漏,可以集成在vc等开发环境中。
可能是先用了boundschecker的build,然后又用vc的build
你可以试试点rebuild all by BC的那个图标或者是boundschecker的版本问题。Top
2 楼huaboy408(Thinking...)回复于 2004-09-04 11:15:30 得分 20
一般警告信息可以忽略,Try a rebuild allTop
相关问题
- debug 和 Release 编译
- Debug版本编译错误
- 编译时,这个警告是什么意思?如何解决?warning LNK4098: defaultlib "LIBC" conflicts ...
- VC编译得到的:warning!
- 编译后 0 error(s), 226 warning(s) 。。。。。。。。。
- Debug版编译通过且能执行,Release版编译出错?????
- 为什么 DEBUG可以编译,RELEASE就编译出错?
- 求教Delephi有没有debug编译和release编译啊?
- 请问:ATL project Debug编译通过,Release编译出错?
- 求救:DEBUG有编译有问题。




