PDA

View Full Version : C++11 auto-complete support in Qt Creator for a generic project



sadastronaut
18th July 2014, 15:13
Auto-complete for C++11 std libraries doesn't seem to be working. It worked fine when I was using boost::shared_ptr, but if I declare an object of type std::shared_ptr, auto complete doesn't work.



#include <memory>

void function()
{
std::shared_ptr<SomeClass> bob;

bob-> // no auto complete to show me available functions
}