有没有什么地方可以得到所有Visual C++编译器/链接器错误/警告的列表?我正在寻找编译器显示的错误/警告编号和错误/警告文本。MSDN 拥有所有这些,但它们在单独的页面上链接到。
问问题
2568 次
2 回答
8
Apparently, none exists: googling for a single page containing all the terms lnk1000 lnk1003 c4100
yields no results.
I think you'll have to compile a reference yourself by painstaking navigation through this MSDN section.
于 2011-06-07T12:33:36.853 回答
1
VS2015 和 VS2017 的所有警告列表可以在 C++ Core Guidelines Checker Reference、 Code Analysis for C/C++ Warnings以及从左侧菜单中的 References 标题链接的其他相关部分中找到。
例如,这是描述C6001 的文档:使用未初始化的内存 [变量]。
我不确定是否有一个页面涵盖所有警告代码,但缺少一个,您可以克隆文档源并自己搜索:https ://github.com/MicrosoftDocs/visualstudio-docs/tree/master/docs /代码质量
于 2018-10-21T09:41:54.303 回答