disassembler: Get rid of a const_cast

This commit is contained in:
Lioncash 2015-03-30 15:37:34 -04:00
parent c4767f3bb2
commit e05d6220f5
3 changed files with 5 additions and 8 deletions

View file

@ -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);