Fix SonarQube issue

This commit is contained in:
Uwe Seimet 2023-10-25 20:03:43 +02:00
parent ea27e03213
commit f680c1cdd9
2 changed files with 2 additions and 2 deletions

View File

@ -691,7 +691,7 @@ bool ScsiController::XferOut(bool cont)
return device != nullptr ? device->WriteByteSequence(span(GetBuffer().data(), count)) : false;
}
void ScsiController::DataOutNonBlockOriented()
void ScsiController::DataOutNonBlockOriented() const
{
assert(IsDataOut());

View File

@ -93,7 +93,7 @@ private:
bool XferOutBlockOriented(bool);
void ReceiveBytes();
void DataOutNonBlockOriented();
void DataOutNonBlockOriented() const;
void Receive();
// TODO Make non-virtual as soon as SysTimer calls do not segfault anymore on a regular PC, e.g. by using ifdef __arm__.