Fixed warnings

This commit is contained in:
Christophe Riccio
2017-08-09 22:15:01 +02:00
parent 3c7d778dba
commit b936761960
4 changed files with 12 additions and 12 deletions

View File

@@ -248,7 +248,7 @@ int test_inverse_perf(std::size_t Count, std::size_t Instance, char const * Mess
//glm::uint Ulp = 0;
//Ulp = glm::max(glm::float_distance(*Dst, *Src), Ulp);
printf("inverse<%s>(%f): %lu\n", Message, Diff, EndTime - StartTime);
printf("inverse<%s>(%f): %lu\n", Message, static_cast<double>(Diff), EndTime - StartTime);
return 0;
}