Hi,
is it a normal behaviour of the CC that I don't get any respose of the CC when dealing with c++11 unique_ptr? I do not get a response neither when trying to complete something like
#include <memory>
std::uniq..
nor when playing with simple examples like
#include <memory>
std::unique_ptr<std::string> string = std::unique_ptr<std::string>(new std::string("Test"));
std::cout << string->size(); // no completion for string->si...
Am I doing something wrong?
I know it's a very old post but, I'm interested too ! :'(
Code Completion don't work with unique_ptr !
" unique_ptr -> nothing ..."
It is known problem. Our C++ parser doesn't support operator overloading.