Red Squirrel
No Lifer
IT's my understanding that if you do something like this:
That function can be called without the 2nd argument because I provided a default value. The problem is, I noticed sometimes this works, sometimes it does not (wont compile). Why is that?
Code:
void DataObject::Load(mysqlpp::Row row,bool childfields=true)
{
//stuff
}
That function can be called without the 2nd argument because I provided a default value. The problem is, I noticed sometimes this works, sometimes it does not (wont compile). Why is that?