mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 12:57:52 +00:00
disassembler: Remove mutable specifier from breakpoints member variable
Breakpoints has been const correct with regards to what the DisassmblerModel needs for quite a while now.
This commit is contained in:
parent
29564d73bd
commit
f2c307557a
1 changed files with 1 additions and 3 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue