欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

[C++]VS2015 update2的安全检测:decorated name length exceeded, name was truncated

程序员文章站 2022-06-08 20:19:54
...

vs2015 update 2对安全检测越来越严格了,以前很多只是warning的接口,现在都会直接给error,今天碰到了这种问题:

 

Error C4503 'std::_Hash<std::_Umap_traits<_Kty,_Ty,std::_Uhash_compare<_Kty,_Hasher,_Keyeq>,_Alloc,false>>::_Insert': decorated name length exceeded, name was truncated

 

原因是我使用了多层嵌套的std::unordered_map(换成std::map则没有这种问题),嵌套了3层,就出现了上面的编译错误:编译时模版展开后的字符串长度超过了编译器的限制长度(255)。详情见:http://*.com/questions/6880045/how-can-i-work-around-visual-c-2005s-decorated-name-length-exceeded-name-wa

 

如果是旧的VS版本,这里只是warning。

这里的error要去掉,头文件中添加:

#pragma warning(disable:4503)

 参考自:http://*.com/questions/3994500/c4503-warnings-how-do-i-solve-get-rid-of-them

 

 

 

相关标签: Visual Studio