From 41482fe56ca1eb98461bbd202c869faf4442c19c Mon Sep 17 00:00:00 2001
From: Roman Donchenko <roman.donchenko@itseez.com>
Date: Mon, 10 Jun 2013 13:30:23 +0400
Subject: [PATCH] Erase MatchPairsBody's copy constructor.

It's the same as the implicitly defined one, and it causes a -Wextra warning
(not initializing the base class in a copy constructor).
---
 modules/stitching/src/matchers.cpp | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/modules/stitching/src/matchers.cpp b/modules/stitching/src/matchers.cpp
index b5bd8ad4d..d918cfff2 100644
--- a/modules/stitching/src/matchers.cpp
+++ b/modules/stitching/src/matchers.cpp
@@ -68,10 +68,6 @@ struct DistIdxPair
 
 struct MatchPairsBody : ParallelLoopBody
 {
-    MatchPairsBody(const MatchPairsBody& other)
-            : matcher(other.matcher), features(other.features),
-              pairwise_matches(other.pairwise_matches), near_pairs(other.near_pairs) {}
-
     MatchPairsBody(FeaturesMatcher &_matcher, const vector<ImageFeatures> &_features,
                    vector<MatchesInfo> &_pairwise_matches, vector<pair<int,int> > &_near_pairs)
             : matcher(_matcher), features(_features),