This commit is contained in:
Nav
2024-02-25 16:41:57 +00:00
parent 44b01ecd84
commit 7918b7c9f7
3 changed files with 7 additions and 7 deletions

View File

@@ -36,7 +36,7 @@ namespace Targets
TargetMemoryAddressRange(TargetMemoryAddress startAddress, TargetMemoryAddress endAddress)
: startAddress(startAddress)
, endAddress(endAddress)
{};
{}
bool operator == (const TargetMemoryAddressRange& rhs) const {
return this->startAddress == rhs.startAddress && this->endAddress == rhs.endAddress;
@@ -107,7 +107,7 @@ namespace Targets
, addressRange(addressRange)
, access(access)
, pageSize(pageSize)
{};
{}
bool operator == (const TargetMemoryDescriptor& rhs) const {
return this->type == rhs.type && this->addressRange == rhs.addressRange;