Commit 73ca1943 authored by Dmitry Kurtaev's avatar Dmitry Kurtaev

Fix convertFp16 in JavaScript build

parent 23d866ad
......@@ -1398,7 +1398,7 @@ cvtScaleHalf_<short, float>( const short* src, size_t sstep, float* dst, size_t
#define DEF_CVT_SCALE_FP16_FUNC(suffix, stype, dtype) \
static void cvtScaleHalf##suffix( const stype* src, size_t sstep, \
dtype* dst, size_t dstep, Size size) \
dtype* dst, size_t dstep, Size size, void*) \
{ \
cvtScaleHalf_<stype,dtype>(src, sstep, dst, dstep, size); \
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment