0

当我尝试包含 gst.h YCM 开始识别所有错误

例如:

#include <math.h>
//#include <gst/gst.h>

main (){ //ycm show error here
int a=0;
int b    //and here
}

#include <math.h>
#include <gst/gst.h>

main (){ //ycm don't show error here
int a=0;
int b    //and here
}

包含到 .ycm_extra_conf.py 的 gst.h 的路径。我想念什么?

4

1 回答 1

0

:YcmDiags显示所有警告和错误 YCM 消息。您必须包含所有嵌套的标头,然后 YCM 才能正确解析您的代码。此外,您必须clang为 C/C++ 语言安装正确的 lib。

于 2013-11-01T16:06:20.627 回答