base: addr range: slight change to validity check
The validity check is being changed from < to <= since the end of the range is considered to be a part of it.
This commit is contained in:
parent
a9bfea5a35
commit
2816521f0d
1 changed files with 2 additions and 1 deletions
|
@ -58,6 +58,7 @@ class AddrRange
|
|||
private:
|
||||
|
||||
/// Private fields for the start and end of the range
|
||||
/// Both _start and _end are part of the range.
|
||||
Addr _start;
|
||||
Addr _end;
|
||||
|
||||
|
@ -166,7 +167,7 @@ class AddrRange
|
|||
/**
|
||||
* Determine if the range is valid.
|
||||
*/
|
||||
bool valid() const { return _start < _end; }
|
||||
bool valid() const { return _start <= _end; }
|
||||
|
||||
/**
|
||||
* Get the start address of the range.
|
||||
|
|
Loading…
Reference in a new issue