Debugger: Remove unused struct ConditionalBreakPointCookie

Change-Id: Ib2eeba127780a80953dc128f844fda7a48b1dd0b
Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
This commit is contained in:
hjk
2015-03-06 16:26:33 +01:00
parent 7f2a440b9d
commit a37e30eb23

View File

@@ -178,19 +178,11 @@ struct MemoryChangeCookie
QByteArray data; QByteArray data;
}; };
struct ConditionalBreakPointCookie
{
ConditionalBreakPointCookie(BreakpointModelId i = BreakpointModelId()) : id(i) {}
BreakpointModelId id;
GdbMi stopReason;
};
} // namespace Internal } // namespace Internal
} // namespace Debugger } // namespace Debugger
Q_DECLARE_METATYPE(Debugger::Internal::MemoryViewCookie) Q_DECLARE_METATYPE(Debugger::Internal::MemoryViewCookie)
Q_DECLARE_METATYPE(Debugger::Internal::MemoryChangeCookie) Q_DECLARE_METATYPE(Debugger::Internal::MemoryChangeCookie)
Q_DECLARE_METATYPE(Debugger::Internal::ConditionalBreakPointCookie)
namespace Debugger { namespace Debugger {
namespace Internal { namespace Internal {