News:

When registered with our forums, feel free to send a "here I am" post here to differ human beings from SPAM bots.

Main Menu

Constructor code completion / parsing

Started by Meiner, October 22, 2012, 04:06:32 PM

Previous topic - Next topic

Meiner

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).


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

MyClass a(5);


Thanks in advance.