I'm working in C++ and want to create a function with an optional parameter that is a QMap. The question is what do I set the default value to. I want it to be an empty map.
void function(int i, QMap< QString, QString > MyMap = ???)
what do you put for ???