diff options
| -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: | |||
| 319 | } | 319 | } |
| 320 | 320 | ||
| 321 | private: | 321 | private: |
| 322 | // TODO: Replace this with std::expected once it is standardized in the STL. | 322 | // TODO (Morph): Replace this with C++23 std::expected. |
| 323 | Common::Expected<T, ResultCode> expected; | 323 | Common::Expected<T, ResultCode> expected; |
| 324 | }; | 324 | }; |
| 325 | 325 | ||