From 70b9f70d1865c8432f1077832380e5880c0cd747 Mon Sep 17 00:00:00 2001 From: Eisenwave Date: Mon, 3 Nov 2025 15:25:41 +0100 Subject: [PATCH 1/2] [const.wrap.class] Add constant_wrapper to index --- source/meta.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/meta.tex b/source/meta.tex index 3217508a35..b1ce3fa40c 100644 --- a/source/meta.tex +++ b/source/meta.tex @@ -837,7 +837,7 @@ }; template<@\exposid{cw-fixed-value}@ X, class> - struct constant_wrapper : cw-operators { + struct @\libglobal{constant_wrapper}@ : cw-operators { static constexpr const auto & value = X.@\exposid{data}@; using type = constant_wrapper; using value_type = decltype(X)::@\exposid{type}@; From 4afdff561e50e203b7ce8d522d2d85454d4a138d Mon Sep 17 00:00:00 2001 From: Eisenwave Date: Mon, 3 Nov 2025 15:28:53 +0100 Subject: [PATCH 2/2] [const.wrap.class] Add missing \exposid around cw-operators --- source/meta.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/meta.tex b/source/meta.tex index b1ce3fa40c..2a014908ee 100644 --- a/source/meta.tex +++ b/source/meta.tex @@ -837,7 +837,7 @@ }; template<@\exposid{cw-fixed-value}@ X, class> - struct @\libglobal{constant_wrapper}@ : cw-operators { + struct @\libglobal{constant_wrapper}@ : @\exposid{cw-operators}@ { static constexpr const auto & value = X.@\exposid{data}@; using type = constant_wrapper; using value_type = decltype(X)::@\exposid{type}@;