From 99ee44b83848e00640e3fc4826e7562d189b2c65 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Wed, 23 Jul 2025 00:41:33 -0500 Subject: [PATCH] [keel] Make type converters work with functions that take const src arg --- deps/nostalgia/src/olympic/keel/include/keel/typeconv.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/nostalgia/src/olympic/keel/include/keel/typeconv.hpp b/deps/nostalgia/src/olympic/keel/include/keel/typeconv.hpp index f5e0d68..971bf22 100644 --- a/deps/nostalgia/src/olympic/keel/include/keel/typeconv.hpp +++ b/deps/nostalgia/src/olympic/keel/include/keel/typeconv.hpp @@ -140,7 +140,7 @@ class ConverterFunc final: public BaseConverter { private: template struct ParamPack { - using Src = SrcType; + using Src = ox::remove_const_t; using Dst = DstType; };