当我尝试包含 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 的路径。我想念什么?