summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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);