opengl - how to use glm's operator== in stl algorithms? -


is possible use operators defined in glm::gtx::comparison in stl algorithms?

specifically have code:

std::vector<glm::ivec3> veca, vecb;    // vectors content bool result = std::equal(veca.begin(), veca.end(), vecb.begin()); 

this default fails cause operator== can't found.

that's open bug apparently.


Comments

Popular posts from this blog

c++ - Compiling static TagLib 1.6.3 libraries for Windows -

PostgreSQL 9.x - pg_read_binary_file & inserting files into bytea -

asp.net - call stack missing info on mono with apache and mod_mono -