在Xcode中消除“文档问题”警告?

时间:2017-03-24 04:30:41

标签: xcode documentation warnings

E.g。 '@param' command used in a comment that is not attached to a function declaration

此警告有效,但是,我正在编译第三方代码,并希望不必更改原始来源。

我正在运行Xcode 8.2.1。

2 个答案:

答案 0 :(得分:34)

我可以通过转到

来抑制这些警告

项目 - >构建设置 - > Apple LLVM 8.1 - 警告 - 所有语言,并将“文档注释”切换为

(要查找设置,我在“构建设置”下的搜索框中键入“文档”。)

答案 1 :(得分:1)

这为我解决了此问题,超过了第三方库标头中的警告。只需用以下#includes包裹有问题的标题pragma

#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdocumentation"
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#pragma clang diagnostic pop

这是来自的提示的组合 Konchog和弗拉基米尔·格里戈洛夫(Vladimir Grigorov)的超级有用答案here