Replace vera++ with clang-format (#4518)
JerryScript-DCO-1.0-Signed-off-by: Robert Fancsik robert.fancsik@h-lab.eu
This commit is contained in:
@@ -26,39 +26,19 @@ main (void)
|
||||
{
|
||||
TEST_INIT ();
|
||||
|
||||
const lit_utf8_byte_t *strings[] =
|
||||
{
|
||||
(const lit_utf8_byte_t *) "1",
|
||||
(const lit_utf8_byte_t *) "0.5",
|
||||
(const lit_utf8_byte_t *) "12345",
|
||||
(const lit_utf8_byte_t *) "12345.123",
|
||||
(const lit_utf8_byte_t *) "1e-45",
|
||||
(const lit_utf8_byte_t *) "-2.5e+38",
|
||||
(const lit_utf8_byte_t *) "NaN",
|
||||
(const lit_utf8_byte_t *) "Infinity",
|
||||
(const lit_utf8_byte_t *) "-Infinity",
|
||||
(const lit_utf8_byte_t *) "0",
|
||||
(const lit_utf8_byte_t *) "0",
|
||||
const lit_utf8_byte_t *strings[] = {
|
||||
(const lit_utf8_byte_t *) "1", (const lit_utf8_byte_t *) "0.5", (const lit_utf8_byte_t *) "12345",
|
||||
(const lit_utf8_byte_t *) "12345.123", (const lit_utf8_byte_t *) "1e-45", (const lit_utf8_byte_t *) "-2.5e+38",
|
||||
(const lit_utf8_byte_t *) "NaN", (const lit_utf8_byte_t *) "Infinity", (const lit_utf8_byte_t *) "-Infinity",
|
||||
(const lit_utf8_byte_t *) "0", (const lit_utf8_byte_t *) "0",
|
||||
};
|
||||
|
||||
const ecma_number_t nums[] =
|
||||
{
|
||||
(ecma_number_t) 1.0,
|
||||
(ecma_number_t) 0.5,
|
||||
(ecma_number_t) 12345.0,
|
||||
(ecma_number_t) 12345.123,
|
||||
(ecma_number_t) 1.0e-45,
|
||||
(ecma_number_t) -2.5e+38,
|
||||
(ecma_number_t) NAN,
|
||||
(ecma_number_t) INFINITY,
|
||||
(ecma_number_t) -INFINITY,
|
||||
(ecma_number_t) +0.0,
|
||||
(ecma_number_t) -0.0
|
||||
};
|
||||
const ecma_number_t nums[] = { (ecma_number_t) 1.0, (ecma_number_t) 0.5, (ecma_number_t) 12345.0,
|
||||
(ecma_number_t) 12345.123, (ecma_number_t) 1.0e-45, (ecma_number_t) -2.5e+38,
|
||||
(ecma_number_t) NAN, (ecma_number_t) INFINITY, (ecma_number_t) -INFINITY,
|
||||
(ecma_number_t) + 0.0, (ecma_number_t) -0.0 };
|
||||
|
||||
for (uint32_t i = 0;
|
||||
i < sizeof (nums) / sizeof (nums[0]);
|
||||
i++)
|
||||
for (uint32_t i = 0; i < sizeof (nums) / sizeof (nums[0]); i++)
|
||||
{
|
||||
lit_utf8_byte_t str[64];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user