Hey,
I am getting the following error: "missing type specifier-int assumed.Note:C++ does not support default-int" for this line of code in Visual Studio 2010:
CTSABlock(CWnd* pParent = NULL);
Don't understand why I am getting this error. I don't get this in Visual Studio 6.0.
Any help will be appreciated!!
Thanks In Advance!!
Indeed, constructors do not have return types.
It's just that I got that exact same error previously today and it was because I was not specifying a type for a couple of my functions. If this is a constructor we are going to need more code like Grey Wolf said.