Commit c34bb0ed authored by StevenPuttemans's avatar StevenPuttemans

remove warnings generated during TS module tests

parent fc5e32c7
......@@ -300,7 +300,7 @@ typedef struct ImplData
{
std::vector<cv::String> out;
for(int i = 0; i < implCode.size(); i++)
for(int i = 0; i < (int)implCode.size(); i++)
{
if(impl == implCode[i])
out.push_back(funName[i]);
......@@ -314,10 +314,10 @@ typedef struct ImplData
std::vector<int> savedCode;
std::vector<cv::String> savedName;
for(int i = 0; i < implCode.size(); i++)
for(int i = 0; i < (int)implCode.size(); i++)
{
bool match = false;
for(int j = 0; j < savedCode.size(); j++)
for(int j = 0; j < (int)savedCode.size(); j++)
{
if(implCode[i] == savedCode[j] && !funName[i].compare(savedName[j]))
{
......
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