Common: Replace Result with C++23's std::expected.

This commit is contained in:
Jordan Woyak
2026-01-08 15:56:01 -06:00
parent b556bd99d7
commit dffc7a650d
24 changed files with 164 additions and 197 deletions

View File

@@ -553,7 +553,7 @@ void CheatSearchWidget::GenerateARCodes()
}
else
{
const auto new_error_code = result.Error();
const auto new_error_code = result.error();
if (!error_code.has_value())
{
error_code = new_error_code;