mem: change NULL to nullptr in the cache related classes
Change-Id: I5042410be54935650b7d05c84d8d9efbfcc06e70 Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com>
This commit is contained in:
2
src/mem/cache/write_queue_entry.cc
vendored
2
src/mem/cache/write_queue_entry.cc
vendored
@@ -132,7 +132,7 @@ WriteQueueEntry::checkFunctional(PacketPtr pkt)
|
||||
// entity. For other requests, we iterate over the individual
|
||||
// targets since that's where the actual data lies.
|
||||
if (pkt->isPrint()) {
|
||||
pkt->checkFunctional(this, blkAddr, isSecure, blkSize, NULL);
|
||||
pkt->checkFunctional(this, blkAddr, isSecure, blkSize, nullptr);
|
||||
return false;
|
||||
} else {
|
||||
return targets.checkFunctional(pkt);
|
||||
|
||||
Reference in New Issue
Block a user