summaryrefslogtreecommitdiff
path: root/src/core/hle/result.h
diff options
context:
space:
mode:
authorGravatar Morph2022-05-03 02:18:28 -0400
committerGravatar Morph2022-05-03 17:44:30 -0400
commit45591126512f7d6a3f7f3e912df4366bd85157f3 (patch)
treeceec2b024cc32713d54ce55e10c2edcccddaf034 /src/core/hle/result.h
parenthle/result: Add ResultRange overload in ResultVal (diff)
downloadyuzu-45591126512f7d6a3f7f3e912df4366bd85157f3.tar.gz
yuzu-45591126512f7d6a3f7f3e912df4366bd85157f3.tar.xz
yuzu-45591126512f7d6a3f7f3e912df4366bd85157f3.zip
hle/result: Update std::expected replacement message
std::expected is included in C++23
Diffstat (limited to 'src/core/hle/result.h')
-rw-r--r--src/core/hle/result.h2
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
321private: 321private:
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