Просмотр исходного кода

hle/result: Update std::expected replacement message

std::expected is included in C++23
Morph 4 лет назад
Родитель
Сommit
4559112651
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/core/hle/result.h

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

@@ -319,7 +319,7 @@ public:
     }
 
 private:
-    // TODO: Replace this with std::expected once it is standardized in the STL.
+    // TODO (Morph): Replace this with C++23 std::expected.
     Common::Expected<T, ResultCode> expected;
 };