forked from qt-creator/qt-creator
Debugger: Fix passing addresses to read memory with LLDB
We need 64 bit on 64 bit machines. Change-Id: I7efed5ffdccc5ce0aa13b1e7296137396ca28efe Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
@@ -68,6 +68,8 @@ private:
|
||||
Command(const char *f) : function(f) {}
|
||||
|
||||
const Command &arg(const char *name, int value) const;
|
||||
const Command &arg(const char *name, qlonglong value) const;
|
||||
const Command &arg(const char *name, qulonglong value) const;
|
||||
const Command &arg(const char *name, const QString &value) const;
|
||||
const Command &arg(const char *name, const QByteArray &value) const;
|
||||
const Command &arg(const char *name, const char *value) const;
|
||||
@@ -78,6 +80,8 @@ private:
|
||||
|
||||
QByteArray function;
|
||||
mutable QByteArray args;
|
||||
private:
|
||||
const Command &argHelper(const char *name, const QByteArray &value) const;
|
||||
};
|
||||
|
||||
// DebuggerEngine implementation
|
||||
|
||||
Reference in New Issue
Block a user