Browse Source

hle/result: Remove cv-qualifiers from Arg in MakeResult

This removes the const qualification for types when MakeResult(arg) is used in a const member function, allowing for automatic deduction and removing the need to manually specify the non-const type as the template argument.
Morph 4 năm trước cách đây
mục cha
commit
1ff9ad4e7c
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      src/core/hle/result.h

+ 2 - 2
src/core/hle/result.h

@@ -329,8 +329,8 @@ template <typename T, typename... Args>
  * copy or move constructing.
  */
 template <typename Arg>
-[[nodiscard]] ResultVal<std::remove_reference_t<Arg>> MakeResult(Arg&& arg) {
-    return ResultVal<std::remove_reference_t<Arg>>::WithCode(ResultSuccess, std::forward<Arg>(arg));
+[[nodiscard]] ResultVal<std::remove_cvref_t<Arg>> MakeResult(Arg&& arg) {
+    return ResultVal<std::remove_cvref_t<Arg>>::WithCode(ResultSuccess, std::forward<Arg>(arg));
 }
 
 /**