Skip to content
Snippets Groups Projects
Commit f2c30755 authored by Lioncash's avatar Lioncash
Browse files

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.
parent 29564d73
No related branches found
No related tags found
No related merge requests found
......@@ -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 {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment