mirror of
https://github.com/yuzu-emu/yuzu-android
synced 2025-01-13 14:31:55 -08:00
lm: Silence no return value warning
This commit is contained in:
parent
e193aa3f53
commit
45dac6bc5c
@ -86,7 +86,8 @@ std::string FormatField(Field type, const std::vector<u8>& data) {
|
|||||||
return Common::StringFromFixedZeroTerminatedBuffer(
|
return Common::StringFromFixedZeroTerminatedBuffer(
|
||||||
reinterpret_cast<const char*>(data.data()), data.size());
|
reinterpret_cast<const char*>(data.data()), data.size());
|
||||||
default:
|
default:
|
||||||
UNIMPLEMENTED();
|
UNIMPLEMENTED_MSG("Unimplemented field type={}", type);
|
||||||
|
return "";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user