[keel] Make type converters work with functions that take const src arg
This commit is contained in:
@ -140,7 +140,7 @@ class ConverterFunc final: public BaseConverter {
|
|||||||
private:
|
private:
|
||||||
template<typename SrcType, typename DstType>
|
template<typename SrcType, typename DstType>
|
||||||
struct ParamPack {
|
struct ParamPack {
|
||||||
using Src = SrcType;
|
using Src = ox::remove_const_t<SrcType>;
|
||||||
using Dst = DstType;
|
using Dst = DstType;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user