From ad992d9e5d1a89dd8cb2a05f7fdb82db3c0945a6 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Thu, 12 Mar 2026 20:26:08 -0500 Subject: [PATCH] xo-interpreter2 stack: refactor + bugfix operator expr --- include/xo/facet/FacetRegistry.hpp | 1 - include/xo/facet/OObject.hpp | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/include/xo/facet/FacetRegistry.hpp b/include/xo/facet/FacetRegistry.hpp index 69bfbee..cbcf497 100644 --- a/include/xo/facet/FacetRegistry.hpp +++ b/include/xo/facet/FacetRegistry.hpp @@ -9,7 +9,6 @@ #include "TypeRegistry.hpp" #include "facet_implementation.hpp" -//#include "typeseq.hpp" #include "obj.hpp" #include #include diff --git a/include/xo/facet/OObject.hpp b/include/xo/facet/OObject.hpp index c121e5e..24397e5 100644 --- a/include/xo/facet/OObject.hpp +++ b/include/xo/facet/OObject.hpp @@ -273,7 +273,7 @@ namespace xo { * * Deliberately disable this for variants **/ - DRepr * operator->() + DRepr * operator->() const noexcept requires (!std::is_same_v) { return data_; }