Fixed numerous Clang -Wextra-semi warnings

This commit is contained in:
Sean McBride
2026-08-19 18:16:02 -04:00
parent 5020ed3c55
commit 948c1be9b3
22 changed files with 64 additions and 64 deletions

View File

@@ -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.

View File

@@ -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,