I am following this tutorial
When having enabled company-node
upon typing for instance std::vec
I get error message in the mini buffer saying:
clang failed with error 1:
/usr/bin/clang -fsyntax-only -Xclang -code-completion-macros -x c++ -Xclang -code-completion-at=-:8:14 -
However when I type just vec
and then hit tab, I get a correct completion to std::vector<Class> var(10, Class());
Any idea what might be going wrong with clang here?