Code::Blocks Forums

User forums => Help => Topic started by: Meiner on October 22, 2012, 04:06:32 pm

Title: Constructor code completion / parsing
Post by: Meiner on October 22, 2012, 04:06:32 pm
Hi,

I have a question regarding the parsing of the constructor parameter list. When I try to instance an object I get no list of arguments expected by the constructor(s). Is that the right behaviour of CodeBlocks or am I doing something wrong?

(I'm using the nightly build 8466).

Code
class MyClass
{
puplic:
    MyClass(int i);
}

MyClass a(5);

Thanks in advance.