Fixed link errors on compilers not supported default function #377

This commit is contained in:
Christophe Riccio
2015-08-31 18:01:51 +02:00
parent be983bd7cb
commit debed28149
3 changed files with 6 additions and 3 deletions

View File

@@ -40,7 +40,7 @@ namespace fmod_
template <typename genType>
GLM_FUNC_QUALIFIER genType modTrunc(genType a, genType b)
{
return a - b * trunc(a / b);
return a - b * glm::trunc(a / b);
}
int test()