forked from qt-creator/qt-creator
DAP: Change unique_ptr to QObject parenting
Change-Id: I47f5db1823e69829294fb9f551a2edcb980d86dc Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -27,6 +27,7 @@ class DapEngine : public DebuggerEngine
|
||||
{
|
||||
public:
|
||||
DapEngine();
|
||||
~DapEngine() override;
|
||||
|
||||
protected:
|
||||
void executeStepIn(bool) override;
|
||||
@@ -107,7 +108,7 @@ protected:
|
||||
void connectDataGeneratorSignals();
|
||||
|
||||
QByteArray m_inbuffer;
|
||||
std::unique_ptr<DapClient> m_dapClient = nullptr;
|
||||
DapClient *m_dapClient = nullptr;
|
||||
|
||||
int m_nextBreakpointId = 1;
|
||||
int m_currentThreadId = -1;
|
||||
|
||||
Reference in New Issue
Block a user