From a136642a2024e3ec57674907bf2d867aa70ec31f Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Mon, 16 Mar 2026 09:03:24 -0500 Subject: [PATCH] xo-interpreter2 stack: + dict type + pop more pm types --- include/xo/object2/DArray.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/xo/object2/DArray.hpp b/include/xo/object2/DArray.hpp index 55d5e06..332d126 100644 --- a/include/xo/object2/DArray.hpp +++ b/include/xo/object2/DArray.hpp @@ -72,7 +72,7 @@ namespace xo { * Darray * v = DArray::array(mm, e1, e2, e3); **/ template - requires (std::same_as> && ...) + requires (std::convertible_to> && ...) static DArray * array(obj mm, Args... args); ///@} @@ -170,7 +170,7 @@ namespace xo { }; template - requires (std::same_as> && ...) + requires (std::convertible_to> && ...) DArray * DArray::array(obj mm, Args... args) {