summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2022-05-03 08:18:28 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2022-05-03 23:44:30 +0200
commit45591126512f7d6a3f7f3e912df4366bd85157f3 (patch)
treeceec2b024cc32713d54ce55e10c2edcccddaf034
parenthle/result: Add ResultRange overload in ResultVal (diff)
downloadyuzu-45591126512f7d6a3f7f3e912df4366bd85157f3.tar
yuzu-45591126512f7d6a3f7f3e912df4366bd85157f3.tar.gz
yuzu-45591126512f7d6a3f7f3e912df4366bd85157f3.tar.bz2
yuzu-45591126512f7d6a3f7f3e912df4366bd85157f3.tar.lz
yuzu-45591126512f7d6a3f7f3e912df4366bd85157f3.tar.xz
yuzu-45591126512f7d6a3f7f3e912df4366bd85157f3.tar.zst
yuzu-45591126512f7d6a3f7f3e912df4366bd85157f3.zip
-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:
}
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;
};