From 51f8a38c38ad662b22e33debdcb720ef5a959a28 Mon Sep 17 00:00:00 2001 From: QxQ <59914293+U-v-U@users.noreply.github.com> Date: Sun, 13 Dec 2020 17:00:39 +0800 Subject: [PATCH] fix, Qt6: fixed QPair --- makespec/BUILDVERSION | 2 +- src/base/Qv2rayLog.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/makespec/BUILDVERSION b/makespec/BUILDVERSION index 53e0347a..9ed491f5 100644 --- a/makespec/BUILDVERSION +++ b/makespec/BUILDVERSION @@ -1 +1 @@ -6083 +6084 diff --git a/src/base/Qv2rayLog.hpp b/src/base/Qv2rayLog.hpp index 86a2ae7b..236da2b8 100644 --- a/src/base/Qv2rayLog.hpp +++ b/src/base/Qv2rayLog.hpp @@ -94,7 +94,7 @@ QTextStream &operator<<(QTextStream &stream, const QMap &map) { stream << "{ "; for (const auto &[k, v] : map.toStdMap()) - stream << QPair(k, v) << "; "; + stream << QPair(k, v) << "; "; stream << "}"; return stream; }