summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2019-08-30 09:33:47 +0200
committerUlf Hermann <ulf.hermann@qt.io>2019-08-30 09:10:13 +0000
commitcc7e5b13526a9f49363a7e7073dccf65c08e2169 (patch)
treef87fd60ce2cda9f3fe927561f55cf5b06d8ab898
parent3508f6297a829027694a8d141945797e4923c748 (diff)
Fix typo in perfsymboltable.cpp
Amends commit 3508f6297a829027694a8d141945797e4923c748. Change-Id: I3ae9df18f6340171189cb150f4fd82ec891037a3 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
-rw-r--r--app/perfsymboltable.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/perfsymboltable.cpp b/app/perfsymboltable.cpp
index 3bc68bc..2cca671 100644
--- a/app/perfsymboltable.cpp
+++ b/app/perfsymboltable.cpp
@@ -619,7 +619,7 @@ struct AddrRange
bool operator<(const AddrRange &rhs) const
{
- return std::tie(low, high) < std::tie(rhs.low, high);
+ return std::tie(low, high) < std::tie(rhs.low, rhs.high);
}
};
Q_DECLARE_TYPEINFO(AddrRange, Q_MOVABLE_TYPE);