MSVS (C++ 用) の静的コード分析ツールには多くの誤検出があり、そのうちのいくつかは Windows SDK ファイルにあります。品質を向上させ、安定した SDK ファイルを無視するように構成する方法はありますか?
質問する
132 次
1 に答える
1
Finally I found what I was looking for - here is the answer directly from MSDN's http://msdn.microsoft.com/en-us/library/zyhb0b82.aspx (VS2010 specific):
#include <codeanalysis\warnings.h>
#pragma warning( push )
#pragma warning ( disable : ALL_CODE_ANALYSIS_WARNINGS )
#include <third-party include files here>
#pragma warning( pop )
于 2010-10-27T20:54:41.990 に答える