首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 操作系统 > UNIXLINUX >

emacs24用company补全失误

2013-11-04 
emacs24用company补全出错#include iostream#include stringusing namespace stdint main(){string s

emacs24用company补全出错
#include <iostream>
#include <string>
using namespace std;

int main()
{
string str("hello world");
cout << str << endl;
str. //补全出错
return 0;
}


clang failed with error 1:
/usr/bin/clang -cc1 -fsyntax-only -code-completion-macros -x c++ -code-completi\
on-at -:9:7 -


clang的版本是3.3
用的company-mode


int main()
{
string str("hello world");
cout << str << endl;
str. //补全出错,主要是这里说的补全出错是啥意思?出的啥错?
return 0;
}

热点排行