Warning fixes continued
[platform/upstream/opencv.git] / modules / stitching / src / matchers.cpp
index 854db00..f876897 100644 (file)
@@ -72,10 +72,10 @@ struct MatchPairsBody
             : matcher(other.matcher), features(other.features),\r
               pairwise_matches(other.pairwise_matches), near_pairs(other.near_pairs) {}\r
 \r
-    MatchPairsBody(FeaturesMatcher &matcher, const vector<ImageFeatures> &features,\r
-                   vector<MatchesInfo> &pairwise_matches, vector<pair<int,int> > &near_pairs)\r
-            : matcher(matcher), features(features),\r
-              pairwise_matches(pairwise_matches), near_pairs(near_pairs) {}\r
+    MatchPairsBody(FeaturesMatcher &_matcher, const vector<ImageFeatures> &_features,\r
+                   vector<MatchesInfo> &_pairwise_matches, vector<pair<int,int> > &_near_pairs)\r
+            : matcher(_matcher), features(_features),\r
+              pairwise_matches(_pairwise_matches), near_pairs(_near_pairs) {}\r
 \r
     void operator ()(const BlockedRange &r) const\r
     {\r