mirror of
https://github.com/Qv2ray/Qv2ray.git
synced 2025-05-19 18:30:34 +08:00
fix, Qt6: fixed QPair<T1, T2>
This commit is contained in:
parent
ea3ab88bff
commit
51f8a38c38
@ -1 +1 @@
|
||||
6083
|
||||
6084
|
||||
|
@ -94,7 +94,7 @@ QTextStream &operator<<(QTextStream &stream, const QMap<TKey, TVal> &map)
|
||||
{
|
||||
stream << "{ ";
|
||||
for (const auto &[k, v] : map.toStdMap())
|
||||
stream << QPair(k, v) << "; ";
|
||||
stream << QPair<TKey, TVal>(k, v) << "; ";
|
||||
stream << "}";
|
||||
return stream;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user