mirror of
https://github.com/opencv/opencv.git
synced 2026-09-15 07:29:07 -05:00
Fixed numerous Clang -Wextra-semi warnings
This commit is contained in:
@@ -30,7 +30,7 @@ class GemmTest : public perf::TestBaseWithParam<GemmTestParams_t>
|
||||
SANITY_CHECK_NOTHING();
|
||||
else
|
||||
SANITY_CHECK(dst, (CV_MAT_DEPTH(type) == CV_32F) ? 1e-4 : 1e-6, ERROR_RELATIVE);
|
||||
};
|
||||
}
|
||||
};
|
||||
|
||||
// Sparse coverage: exercise tiny/small/rectangular shapes and m=1/n=1 edge cases.
|
||||
|
||||
@@ -9,8 +9,8 @@ namespace opencv_test { namespace {
|
||||
struct DummyAllocator: public cv::MatAllocator
|
||||
{
|
||||
public:
|
||||
DummyAllocator() {};
|
||||
~DummyAllocator() {};
|
||||
DummyAllocator() {}
|
||||
~DummyAllocator() {}
|
||||
|
||||
cv::UMatData* allocate(int dims, const int* sizes, int type,
|
||||
void* data0, size_t* step, cv::AccessFlag flags,
|
||||
|
||||
Reference in New Issue
Block a user