vc++编译程序时 identifier was truncated to '255' characters in the browser information告警的解决方法

使用map时会出现如下警告:主要意思是 identifier was truncated to '255' characters in the browser information,可以通过增加#pragma warning(disable:4786)消除该警告。该警告主要意思是调试信息的字符超过了255个,将会被截断不现实,并不影响程序运行。

你可能感兴趣的:(vc++,browser)