xavierd / clang_complete

Vim plugin that use clang for completing C/C++ code.
http://www.vim.org/scripts/script.php?script_id=3302
1.96k stars 308 forks source link

'std' not in the complete results #578

Closed yanzp0214 closed 4 years ago

yanzp0214 commented 4 years ago

I set args like this ['-I ..\LLVM\bin/../lib/clang/10.0.0/include', '-I ../4.8.2', '-I ../4.8.2\x86_64-redhat-linux', '-std=C++14'],it returns 443 complete words(['test_var', 'type_info', 'size_t', 'true', 'false', 'dynamic_cast', 'static_cast', 'reinterpret_cast', 'const_cast', 'typeid', 'new', 'new', 'delete', 'delete', 'throw', 'nullptr', 'alignof', 'noexcept'...]),but i find there no 'std' and some other words in the return list.Is there any problem in program operation?

yanzp0214 commented 4 years ago

I find that "#include" at the header do not affect the result.