diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-05-03 02:18:28 -0400 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-05-03 17:44:30 -0400 |
commit | 45591126512f7d6a3f7f3e912df4366bd85157f3 (patch) | |
tree | ceec2b024cc32713d54ce55e10c2edcccddaf034 /src | |
parent | f3f3f1b7d94a490b0762db1d1d4040b7d93facdc (diff) |
hle/result: Update std::expected replacement message
std::expected is included in C++23
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/result.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/result.h b/src/core/hle/result.h index 1a74a7402..569dd9f38 100644 --- a/src/core/hle/result.h +++ b/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; }; |