diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/result.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/result.h b/src/core/hle/result.h index 00fe70998..2c6b24848 100644 --- a/src/core/hle/result.h +++ b/src/core/hle/result.h | |||
| @@ -349,8 +349,8 @@ template <typename T, typename... Args> | |||
| 349 | * copy or move constructing. | 349 | * copy or move constructing. |
| 350 | */ | 350 | */ |
| 351 | template <typename Arg> | 351 | template <typename Arg> |
| 352 | [[nodiscard]] ResultVal<std::remove_reference_t<Arg>> MakeResult(Arg&& arg) { | 352 | [[nodiscard]] ResultVal<std::remove_cvref_t<Arg>> MakeResult(Arg&& arg) { |
| 353 | return ResultVal<std::remove_reference_t<Arg>>::WithCode(ResultSuccess, std::forward<Arg>(arg)); | 353 | return ResultVal<std::remove_cvref_t<Arg>>::WithCode(ResultSuccess, std::forward<Arg>(arg)); |
| 354 | } | 354 | } |
| 355 | 355 | ||
| 356 | /** | 356 | /** |