forked from qt-creator/qt-creator
Debugger: Modernize
modernize-use-auto modernize-use-nullptr modernize-use-override modernize-use-using modernize-use-default-member-init modernize-use-equals-default Change-Id: I91a6874f0d7b94e9079ab4ef07c23c60c80be9c0 Reviewed-by: Christian Stenger <christian.stenger@qt.io> Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -155,7 +155,7 @@ static const char localsPrefixC[] = "local.";
|
||||
class CdbCommand
|
||||
{
|
||||
public:
|
||||
CdbCommand() {}
|
||||
CdbCommand() = default;
|
||||
CdbCommand(CdbEngine::CommandHandler h) : handler(h) {}
|
||||
|
||||
CdbEngine::CommandHandler handler;
|
||||
@@ -267,9 +267,7 @@ void CdbEngine::init()
|
||||
QTC_ASSERT(m_process.state() != QProcess::Running, SynchronousProcess::stopProcess(m_process));
|
||||
}
|
||||
|
||||
CdbEngine::~CdbEngine()
|
||||
{
|
||||
}
|
||||
CdbEngine::~CdbEngine() = default;
|
||||
|
||||
void CdbEngine::operateByInstructionTriggered(bool operateByInstruction)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user