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.

Qt Code:
  1. #include <memory>
  2.  
  3. void function()
  4. {
  5. std::shared_ptr<SomeClass> bob;
  6.  
  7. bob-> // no auto complete to show me available functions
  8. }
To copy to clipboard, switch view to plain text mode