arm_test_common: Get rid of truncation warnings
Explicitly cast the value to a u8 to show that this is intentional.
This commit is contained in:
parent
a8bb1eb39f
commit
48733744bb
|
@ -65,10 +65,13 @@ boost::optional<bool> TestEnvironment::TestMemory::IsValidAddress(VAddr addr) {
|
|||
}
|
||||
|
||||
boost::optional<u8> TestEnvironment::TestMemory::Read8(VAddr addr) {
|
||||
auto iter = data.find(addr);
|
||||
const auto iter = data.find(addr);
|
||||
|
||||
if (iter == data.end()) {
|
||||
return addr; // Some arbitrary data
|
||||
// Some arbitrary data
|
||||
return static_cast<u8>(addr);
|
||||
}
|
||||
|
||||
return iter->second;
|
||||
}
|
||||
|
||||
|
|
Reference in New Issue