Author Topic: Constructor code completion / parsing  (Read 2339 times)

Offline Meiner

  • Multiple posting newcomer
  • *
  • Posts: 12
Constructor code completion / parsing
« 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.