summaryrefslogtreecommitdiff
path: root/src/tests
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-07-20 17:53:50 -0400
committerLioncash <mathew1800@gmail.com>2018-07-20 17:53:53 -0400
commit48733744bb38d3a18af9713096f6e9b729944bb2 (patch)
treeb1fc7f9ed0a5651a05ac7cee15802ca3e34c9c81 /src/tests
parenta8bb1eb39fe2cf62545798a493f6350c3d1d5728 (diff)
arm_test_common: Get rid of truncation warnings
Explicitly cast the value to a u8 to show that this is intentional.
Diffstat (limited to 'src/tests')
-rw-r--r--src/tests/core/arm/arm_test_common.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/tests/core/arm/arm_test_common.cpp b/src/tests/core/arm/arm_test_common.cpp
index 2af487b6a..539746246 100644
--- a/src/tests/core/arm/arm_test_common.cpp
+++ b/src/tests/core/arm/arm_test_common.cpp
@@ -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;
}