From 48733744bb38d3a18af9713096f6e9b729944bb2 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 20 Jul 2018 17:53:50 -0400 Subject: [PATCH] arm_test_common: Get rid of truncation warnings Explicitly cast the value to a u8 to show that this is intentional. --- src/tests/core/arm/arm_test_common.cpp | 7 +++++-- 1 file 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 2af487b6a4..539746246b 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 TestEnvironment::TestMemory::IsValidAddress(VAddr addr) { } boost::optional 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(addr); } + return iter->second; }