Commit d7e92014 authored by Alexander Alekhin's avatar Alexander Alekhin

misc: apply CV_OVERRIDE/CV_FINAL

parent 2bd4f2c3
...@@ -160,7 +160,7 @@ namespace ...@@ -160,7 +160,7 @@ namespace
num_points(num_points_), subset_size(subset_size_), rot_matrices(rot_matrices_), num_points(num_points_), subset_size(subset_size_), rot_matrices(rot_matrices_),
transl_vectors(transl_vectors_) {} 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 // Input data for generation of the current hypothesis
std::vector<int> subset_indices(subset_size); std::vector<int> subset_indices(subset_size);
......
...@@ -42,7 +42,7 @@ public: ...@@ -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++) for (int r = range.start; r < range.end; r++)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment