News:

Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM!

Main Menu

CC behaviour with c++11 unique_ptr

Started by Meiner, July 05, 2014, 10:00:19 PM

Previous topic - Next topic

Meiner

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?

SilverTES

#1
I know it's a very old post but, I'm interested too ! :'(

Code Completion don't work with unique_ptr !

" unique_ptr -> nothing ..."

oBFusCATed

It is known problem. Our C++ parser doesn't support operator overloading.
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]