User forums > Using Code::Blocks

CC behaviour with c++11 unique_ptr

(1/1)

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

--- Code: ---#include <memory>
std::uniq..

--- End code ---
nor when playing with simple examples like


--- Code: ---#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...

--- End code ---

Am I doing something wrong?

SilverTES:
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.

Navigation

[0] Message Index

Go to full version