Is it possible to use the operators defined in glm::gtx::comparison in stl algorithms?
Specifically i have this code:
std::vector<glm::ivec3> vecA, vecB; // vectors with content
bool result = std::equal(vecA.begin(), vecA.end(), vecB.begin());
This by default fails cause operator== can't be found.