Merge pull request #2361 from lioncash/disasm

disassembler: Remove mutable specifier from breakpoints member variable
This commit is contained in:
bunnei 2016-12-22 00:15:06 -05:00 committed by GitHub
commit 7623957f80
1 changed files with 1 additions and 3 deletions

View File

@ -38,9 +38,7 @@ private:
unsigned int program_counter;
QModelIndex selection;
// TODO: Make BreakPoints less crappy (i.e. const-correct) so that this needn't be mutable.
mutable BreakPoints breakpoints;
BreakPoints breakpoints;
};
class DisassemblerWidget : public QDockWidget {