1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 15:53:03 +04:00

Fixed most clang -Wextra-semi warnings

This commit is contained in:
Sean McBride
2022-09-27 18:06:46 -04:00
parent 3a64607d94
commit 1829eba584
14 changed files with 28 additions and 28 deletions
+1 -1
View File
@@ -165,7 +165,7 @@ public:
_mm256_zeroupper();
}
virtual ~FAST_t_patternSize16_AVX2_Impl() CV_OVERRIDE {};
virtual ~FAST_t_patternSize16_AVX2_Impl() CV_OVERRIDE {}
private:
int cols;
+1 -1
View File
@@ -54,7 +54,7 @@ class FAST_t_patternSize16_AVX2
public:
static Ptr<FAST_t_patternSize16_AVX2> getImpl(int _cols, int _threshold, bool _nonmax_suppression, const int* _pixel);
virtual void process(int &j, const uchar* &ptr, uchar* curr, int* cornerpos, int &ncorners) = 0;
virtual ~FAST_t_patternSize16_AVX2() {};
virtual ~FAST_t_patternSize16_AVX2() {}
};
#endif
}