diff options
author | Lioncash <mathew1800@gmail.com> | 2015-03-30 15:37:34 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2015-03-30 15:37:34 -0400 |
commit | e05d6220f58c96ed8da6d9e69a597808f50c2edc (patch) | |
tree | e46b6859d3c48dbc76eeb5af48ea344ec4b36fd5 /src/common/break_points.h | |
parent | c4767f3bb2da17c8b14df78f47db10696f91960a (diff) |
disassembler: Get rid of a const_cast
Diffstat (limited to 'src/common/break_points.h')
-rw-r--r-- | src/common/break_points.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/break_points.h b/src/common/break_points.h index 5557cd50ed..4b26cf90da 100644 --- a/src/common/break_points.h +++ b/src/common/break_points.h @@ -56,8 +56,8 @@ public: void AddFromStrings(const TBreakPointsStr& bps); // is address breakpoint - bool IsAddressBreakPoint(u32 iAddress); - bool IsTempBreakPoint(u32 iAddress); + bool IsAddressBreakPoint(u32 iAddress) const; + bool IsTempBreakPoint(u32 iAddress) const; // Add BreakPoint void Add(u32 em_address, bool temp=false); |