Fix unused-parameter Warning

pull/3829/head
ippei ito 10 years ago
parent cd42e38013
commit 8efdfd9dfc
  1. 2
      modules/flann/include/opencv2/flann/autotuned_index.h
  2. 2
      modules/flann/include/opencv2/flann/composite_index.h
  3. 2
      modules/flann/include/opencv2/flann/hierarchical_clustering_index.h
  4. 2
      modules/flann/include/opencv2/flann/kdtree_index.h
  5. 2
      modules/flann/include/opencv2/flann/kdtree_single_index.h
  6. 2
      modules/flann/include/opencv2/flann/kmeans_index.h
  7. 2
      modules/flann/include/opencv2/flann/linear_index.h

@ -97,7 +97,7 @@ public:
/**
* Dummy implementation for other algorithms of addable indexes after that.
*/
void addIndex(const Matrix<ElementType>& wholeData, const Matrix<ElementType>& additionalData)
void addIndex(const Matrix<ElementType>& /*wholeData*/, const Matrix<ElementType>& /*additionalData*/)
{
}

@ -133,7 +133,7 @@ public:
/**
* Dummy implementation for other algorithms of addable indexes after that.
*/
void addIndex(const Matrix<ElementType>& wholeData, const Matrix<ElementType>& additionalData)
void addIndex(const Matrix<ElementType>& /*wholeData*/, const Matrix<ElementType>& /*additionalData*/)
{
}

@ -382,7 +382,7 @@ public:
/**
* Dummy implementation for other algorithms of addable indexes after that.
*/
void addIndex(const Matrix<ElementType>& wholeData, const Matrix<ElementType>& additionalData)
void addIndex(const Matrix<ElementType>& /*wholeData*/, const Matrix<ElementType>& /*additionalData*/)
{
}

@ -120,7 +120,7 @@ public:
/**
* Dummy implementation for other algorithms of addable indexes after that.
*/
void addIndex(const Matrix<ElementType>& wholeData, const Matrix<ElementType>& additionalData)
void addIndex(const Matrix<ElementType>& /*wholeData*/, const Matrix<ElementType>& /*additionalData*/)
{
}

@ -113,7 +113,7 @@ public:
/**
* Dummy implementation for other algorithms of addable indexes after that.
*/
void addIndex(const Matrix<ElementType>& wholeData, const Matrix<ElementType>& additionalData)
void addIndex(const Matrix<ElementType>& /*wholeData*/, const Matrix<ElementType>& /*additionalData*/)
{
}

@ -365,7 +365,7 @@ public:
/**
* Dummy implementation for other algorithms of addable indexes after that.
*/
void addIndex(const Matrix<ElementType>& wholeData, const Matrix<ElementType>& additionalData)
void addIndex(const Matrix<ElementType>& /*wholeData*/, const Matrix<ElementType>& /*additionalData*/)
{
}

@ -88,7 +88,7 @@ public:
/**
* Dummy implementation for other algorithms of addable indexes after that.
*/
void addIndex(const Matrix<ElementType>& wholeData, const Matrix<ElementType>& additionalData)
void addIndex(const Matrix<ElementType>& /*wholeData*/, const Matrix<ElementType>& /*additionalData*/)
{
}

Loading…
Cancel
Save