mirror of https://github.com/stella-emu/stella.git
Minor fixes for warnings from clang-tidy.
This commit is contained in:
parent
40ab63ff5e
commit
bb374fb982
|
@ -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));
|
||||||
}
|
}
|
||||||
|
|
||||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
|
|
@ -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);
|
||||||
|
|
Loading…
Reference in New Issue