1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 15:23:05 +04:00

Fix issues found by static analysis

This commit is contained in:
Maksim Shabunin
2020-11-11 01:54:01 +03:00
parent e12adcdf08
commit 1b0dca9c2c
4 changed files with 7 additions and 6 deletions
+2 -2
View File
@@ -531,14 +531,14 @@ template<typename T> struct DFT_R5
template<typename T> struct DFT_VecR2
{
void operator()(Complex<T>* dst, const int c_n, const int n, const int dw0, const Complex<T>* wave) const {
return DFT_R2<T>()(dst, c_n, n, dw0, wave);
DFT_R2<T>()(dst, c_n, n, dw0, wave);
}
};
template<typename T> struct DFT_VecR3
{
void operator()(Complex<T>* dst, const int c_n, const int n, const int dw0, const Complex<T>* wave) const {
return DFT_R3<T>()(dst, c_n, n, dw0, wave);
DFT_R3<T>()(dst, c_n, n, dw0, wave);
}
};