Hi, I'm trying to create a simple function that makes a simple test and return true or false.
myfunct = (_3 < someArray[i]);
When I do this, I get this error :
error: no match for 'operator<' in '<unnamed>::_1 < depths[i]'
What I hope is get something equivalent to this
bool myFunct(unsigned int a, unsigned int b, unsigned int c, unsigned int d)
{
return c < 22; // Suppose 22 was in someArray[i]
}