parameters import/export test

This commit is contained in:
Daniel Agar
2018-01-23 19:12:14 -05:00
parent 8d4036df7d
commit 59fd22be1b
3 changed files with 344 additions and 1 deletions
+1 -1
View File
@@ -161,7 +161,7 @@ protected:
/// since it will give you better error reporting of the actual values being compared.
#define ut_compare_float(message, v1, v2, precision) \
do { \
int _p = pow(10.0f, precision); \
int _p = powf(10.0f, precision); \
int _v1 = (int)(v1 * _p + 0.5f); \
int _v2 = (int)(v2 * _p + 0.5f); \
if (_v1 != _v2) { \