mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-29 13:20:54 +00:00
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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user