RelAccX::isReload() no longer requires a valid pointer
Change-Id: Iacd322873203df90bca16321718f0850157b62c8
This commit is contained in:
parent
308f215fc3
commit
09cf1b463b
1 changed files with 1 additions and 1 deletions
|
@ -580,7 +580,7 @@ namespace Util{
|
|||
bool RelAccX::isExit() const{return !p || (p[0] & 2);}
|
||||
|
||||
/// Returns true if the structure should be reloaded through out of band means.
|
||||
bool RelAccX::isReload() const{return p[0] & 4;}
|
||||
bool RelAccX::isReload() const{return !p || (p[0] & 4);}
|
||||
|
||||
/// Returns true if the given record number can be accessed.
|
||||
bool RelAccX::isRecordAvailable(uint64_t recordNo) const{
|
||||
|
|
Loading…
Add table
Reference in a new issue