[keel] Fix MSVC build
All checks were successful
Build / build (push) Successful in 1m16s

This commit is contained in:
Gary Talent 2025-04-17 01:01:22 -05:00
parent e86180e842
commit 97b707b61c

View File

@ -143,8 +143,8 @@ class ConverterFunc: public BaseConverter {
}
public:
using SrcType = decltype(makeParamExtractor(Func))::Src;
using DstType = decltype(makeParamExtractor(Func))::Dst;
using SrcType = typename decltype(makeParamExtractor(Func))::Src;
using DstType = typename decltype(makeParamExtractor(Func))::Dst;
[[nodiscard]]
constexpr ox::StringView srcTypeName() const noexcept final {