From ae99a2124da32e4d2474e6dc6cf54322b688b743 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Mon, 24 Mar 2025 18:10:30 +0000 Subject: Use is_base_of_v instead of is_convertible_v to choose OtherObjects --- lib/collection.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib') diff --git a/lib/collection.h b/lib/collection.h index b786e2f..8e9cf1a 100644 --- a/lib/collection.h +++ b/lib/collection.h @@ -236,12 +236,12 @@ protected: } template - requires((std::is_convertible_v || ...)) + requires((std::is_base_of_v || ...)) [[nodiscard]] consteval static bool idx() { size_t typeIdx = 0; - return ((typeIdx++ && std::is_convertible_v) || ...); + return ((typeIdx++ && std::is_base_of_v) || ...); } template @@ -249,7 +249,7 @@ protected: constexpr const auto & containerFor() const { - if constexpr ((std::is_convertible_v || ...)) { + if constexpr ((std::is_base_of_v || ...)) { return std::get()>(otherObjects); } else { -- cgit v1.2.3