summaryrefslogtreecommitdiffstats
path: root/src/common/concepts.h
diff options
context:
space:
mode:
authorcomex <comexk@gmail.com>2020-12-29 20:26:16 +0100
committercomex <comexk@gmail.com>2020-12-29 20:33:41 +0100
commit388cf58b31d6480007901785851e6369b0efe64b (patch)
tree526f9692f15be9f946511082692420f4971104a8 /src/common/concepts.h
parentMerge pull request #5236 from gal20/udp_client_patch (diff)
downloadyuzu-388cf58b31d6480007901785851e6369b0efe64b.tar
yuzu-388cf58b31d6480007901785851e6369b0efe64b.tar.gz
yuzu-388cf58b31d6480007901785851e6369b0efe64b.tar.bz2
yuzu-388cf58b31d6480007901785851e6369b0efe64b.tar.lz
yuzu-388cf58b31d6480007901785851e6369b0efe64b.tar.xz
yuzu-388cf58b31d6480007901785851e6369b0efe64b.tar.zst
yuzu-388cf58b31d6480007901785851e6369b0efe64b.zip
Diffstat (limited to '')
-rw-r--r--src/common/concepts.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/common/concepts.h b/src/common/concepts.h
index 5bef3ad67..aa08065a7 100644
--- a/src/common/concepts.h
+++ b/src/common/concepts.h
@@ -31,4 +31,8 @@ concept DerivedFrom = requires {
std::is_convertible_v<const volatile Derived*, const volatile Base*>;
};
+// TODO: Replace with std::convertible_to when libc++ implements it.
+template <typename From, typename To>
+concept ConvertibleTo = std::is_convertible_v<From, To>;
+
} // namespace Common