forked from qt-creator/qt-creator
debugger: handle large quint64 values 'properly'
(cherry picked from commit 02e90fd71d
)
Conflicts:
src/plugins/debugger/watchhandler.cpp
This commit is contained in:
@@ -608,7 +608,8 @@ static QString formattedValue(const WatchData &data,
|
||||
const int format = individualFormat == -1 ? typeFormat : individualFormat;
|
||||
if (format <= 0)
|
||||
return data.value;
|
||||
if (data.type.contains(QLatin1String("unsigned"))) {
|
||||
// Evil hack, covers 'unsigned' as well as quint64.
|
||||
if (data.type.contains(QLatin1Char('u'))) {
|
||||
return reformatInteger(data.value.toULongLong(), format);
|
||||
} else {
|
||||
return reformatInteger(data.value.toLongLong(), format);
|
||||
|
Reference in New Issue
Block a user