misc: apply CV_OVERRIDE/CV_FINAL

This commit is contained in:
Alexander Alekhin 2018-03-15 16:17:06 +03:00
parent 2bd4f2c3a6
commit d7e9201434
2 changed files with 2 additions and 2 deletions

View File

@ -160,7 +160,7 @@ namespace
num_points(num_points_), subset_size(subset_size_), rot_matrices(rot_matrices_),
transl_vectors(transl_vectors_) {}
void operator()(const Range& range) const
void operator()(const Range& range) const CV_OVERRIDE
{
// Input data for generation of the current hypothesis
std::vector<int> subset_indices(subset_size);

View File

@ -42,7 +42,7 @@ public:
{
}
virtual void operator ()(const Range& range) const
virtual void operator ()(const Range& range) const CV_OVERRIDE
{
for (int r = range.start; r < range.end; r++)
{