Is it possible to iterate through qmap when key and value is a pointer with foreach?
I always get the error: decltype cannot resolve address of overloaded function
template <typename T, typename T1>
bool func(T1* subject, QMap<T*,T1*>* map)
{
//...
foreach (T1* a, map->values) {
}
thank you for helping me