Minor fixes for warnings from clang-tidy.

This commit is contained in:
Stephen Anthony 2024-08-28 21:51:40 -02:30
parent 40ab63ff5e
commit bb374fb982
2 changed files with 2 additions and 2 deletions

View File

@ -123,7 +123,7 @@ void CartridgeELFStateWidget::initialize()
y += myQueueSize->getHeight() + lineHeight / 2; y += myQueueSize->getHeight() + lineHeight / 2;
myNextTransaction = new StaticTextWidget(_boss, _font, x0, y, describeTransaction(0xffff, 0xffff, ~0LLu)); myNextTransaction = new StaticTextWidget(_boss, _font, x0, y, describeTransaction(0xffff, 0xffff, ~0LLU));
} }
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

View File

@ -715,7 +715,7 @@ CortexM0& CortexM0::mapRegionData(uInt32 pageBase, uInt32 pageCount,
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
CortexM0& CortexM0::mapRegionCode(uInt32 pageBase, uInt32 pageCount, CortexM0& CortexM0::mapRegionCode(uInt32 pageBase, uInt32 pageCount,
bool readOnly, uInt8* backingStore) bool readOnly, uInt8* backingStore) // NOLINT
{ {
MemoryRegion& region = MemoryRegion& region =
setupMapping(pageBase, pageCount, readOnly, MemoryRegionType::directCode); setupMapping(pageBase, pageCount, readOnly, MemoryRegionType::directCode);