debugger: collect breakpoint related data in a single hash

This commit is contained in:
hjk
2010-11-15 13:12:13 +01:00
parent fff3309e4d
commit b02c71e926
4 changed files with 106 additions and 103 deletions

View File

@@ -50,14 +50,6 @@ namespace Internal {
const char *BreakpointData::throwFunction = "throw";
const char *BreakpointData::catchFunction = "catch";
static quint64 nextBPId()
{
// Ok to be not thread-safe. The order does not matter and only the gui
// produces authoritative ids.
static quint64 i = 0;
return ++i;
}
BreakpointData::BreakpointData()
{
m_state = BreakpointNew;