[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:
|
||||
template<typename SrcType, typename DstType>
|
||||
struct ParamPack {
|
||||
using Src = SrcType;
|
||||
using Src = ox::remove_const_t<SrcType>;
|
||||
using Dst = DstType;
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user