// crt_crtdbgreport.c
#include <crtdbg.h>
int main(int argc, char *argv[]) {
#ifdef _DEBUG
_CrtDbgReport(_CRT_ASSERT, __FILE__, __LINE__, argv[0], NULL);
#endif
}
解决方法:
用release版,或者把debug版本中预编译头的_debug去掉,这样在函数执行的时候就不会出现这个问题了。
具体什么原因还未找到.
标签:__,C3861,CrtDbgReportW,argv,int,debug,标识符 From: https://www.cnblogs.com/corenick/p/17502301.html