imgproc: apply CV_OVERRIDE/CV_FINAL

This commit is contained in:
Alexander Alekhin
2018-03-15 16:16:51 +03:00
parent 9111538bfb
commit 5d36ee2fe7
23 changed files with 243 additions and 243 deletions
+2 -2
View File
@@ -452,7 +452,7 @@ struct DTColumnInvoker : ParallelLoopBody
sqr_tab = _sqr_tab;
}
void operator()( const Range& range ) const
void operator()(const Range& range) const CV_OVERRIDE
{
int i, i1 = range.start, i2 = range.end;
int m = src->rows;
@@ -497,7 +497,7 @@ struct DTRowInvoker : ParallelLoopBody
inv_tab = _inv_tab;
}
void operator()( const Range& range ) const
void operator()(const Range& range) const CV_OVERRIDE
{
const float inf = 1e15f;
int i, i1 = range.start, i2 = range.end;