News:

The new Release 25.03 is out! You can download binaries for Windows and many major Linux distros here .

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.