Memory: ExtractFromMemory: boost::none

This commit is contained in:
MerryMage 2016-01-26 00:46:52 +00:00
parent 3e75de6006
commit add1604e57

View file

@ -140,7 +140,7 @@ boost::optional<T> ExtractFromMemory(VAddr address) {
const u8* memory = GetPointer(address); const u8* memory = GetPointer(address);
if (!memory) { if (!memory) {
return {}; return boost::none;
} }
T object; T object;