Cosructor without ()

In my code i have a call to a constructor and the call is without ().

object * t = new object;

the constructor is without parameters. the code compiles and working.
is it any diffrent than:

object * t = new object();
?
thanks!
Topic archived. No new replies allowed.