[keel] Make type converters work with functions that take const src arg

This commit is contained in:
2025-07-23 00:41:33 -05:00
parent be7dd92971
commit 99ee44b838

View File

@ -140,7 +140,7 @@ class ConverterFunc final: public BaseConverter {
private:
template<typename SrcType, typename DstType>
struct ParamPack {
using Src = SrcType;
using Src = ox::remove_const_t<SrcType>;
using Dst = DstType;
};