Replace use of std::pair with rdcpair wherever possible

* Only remaining uses in our code is when we're interacting with std::map where
  it uses std::pair internally
This commit is contained in:
baldurk
2019-05-17 14:00:20 +01:00
parent 462772af91
commit e48065c96b
57 changed files with 268 additions and 340 deletions
@@ -102,7 +102,7 @@ rdcstrpairs convertFromVariant(const QVariantMap &val)
rdcstrpairs ret;
for(const QString &k : val.keys())
{
ret.push_back(make_rdcpair<rdcstr, rdcstr>(k, val[k].toString()));
ret.push_back({k, val[k].toString()});
}
return ret;
}