Commit 8efdfd9d authored by ippei ito's avatar ippei ito

Fix unused-parameter Warning

parent cd42e380
...@@ -97,7 +97,7 @@ public: ...@@ -97,7 +97,7 @@ public:
/** /**
* Dummy implementation for other algorithms of addable indexes after that. * 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: ...@@ -133,7 +133,7 @@ public:
/** /**
* Dummy implementation for other algorithms of addable indexes after that. * 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: ...@@ -382,7 +382,7 @@ public:
/** /**
* Dummy implementation for other algorithms of addable indexes after that. * 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: ...@@ -120,7 +120,7 @@ public:
/** /**
* Dummy implementation for other algorithms of addable indexes after that. * 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: ...@@ -113,7 +113,7 @@ public:
/** /**
* Dummy implementation for other algorithms of addable indexes after that. * 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: ...@@ -365,7 +365,7 @@ public:
/** /**
* Dummy implementation for other algorithms of addable indexes after that. * 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: ...@@ -88,7 +88,7 @@ public:
/** /**
* Dummy implementation for other algorithms of addable indexes after that. * 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*/)
{ {
} }
......
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