This commit is contained in:
Branimir Karadžić
2017-06-19 20:04:55 -07:00
parent 90f7fa778d
commit e117d4ebe1
2 changed files with 12 additions and 12 deletions

View File

@@ -185,7 +185,7 @@ TEST_CASE("toString double", "")
static bool testFromString(double _value, const char* _input)
{
char tmp[1024];
int32_t num = bx::toString(tmp, BX_COUNTOF(tmp), _value);
bx::toString(tmp, BX_COUNTOF(tmp), _value);
double lhs;
bx::fromString(&lhs, tmp);