diff --git a/src/plugins/debugger/debuggerstartparameters.h b/src/plugins/debugger/debuggerstartparameters.h index a7b75830e58..d81b7970534 100644 --- a/src/plugins/debugger/debuggerstartparameters.h +++ b/src/plugins/debugger/debuggerstartparameters.h @@ -55,17 +55,10 @@ const qint64 InvalidPid = -1; class DEBUGGER_EXPORT RemoteSetupResult { public: - RemoteSetupResult() - : gdbServerPort(InvalidPort), - qmlServerPort(InvalidPort), - inferiorPid(InvalidPid), - success(false) - {} - - int gdbServerPort; - int qmlServerPort; - qint64 inferiorPid; - bool success; + int gdbServerPort = InvalidPort; + int qmlServerPort = InvalidPort; + qint64 inferiorPid = InvalidPid; + bool success = false; QString reason; };