#defined the name of his class.My mistake had been to define a constructor without putting the
Class:: in front of it:
Class() // WRONG!!!
: Super(), _duper()
{
}
instead of
Class::Class()
: Super(), _duper()
{
}
It wasn't as stupid as it sounds, I was cutting and pasting inlined functions into the .cpp file.
No comments:
Post a Comment