From 0284eef5550fdd9d914a70e6441ebd51eb092a83 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Wed, 18 Feb 2026 21:47:02 -0800 Subject: [PATCH] xo-reader2 stack: + xo-numeric + setup multi dispatch for *,/ --- include/xo/facet/FacetRegistry.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/xo/facet/FacetRegistry.hpp b/include/xo/facet/FacetRegistry.hpp index 2beb99b..eda22f5 100644 --- a/include/xo/facet/FacetRegistry.hpp +++ b/include/xo/facet/FacetRegistry.hpp @@ -50,7 +50,8 @@ namespace xo { // combine the two seqno values std::size_t h1 = std::hash{}(k.first.seqno()); std::size_t h2 = std::hash{}(k.second.seqno()); - return h1 ^ (h2 << 1); + + return h1 ^ (h2 << 3); } };