Replace // double slash comments with /* */. (#1461)

JerryScript-DCO-1.0-Signed-off-by: Robert Sipka rsipka.uszeged@partner.samsung.com
This commit is contained in:
Robert Sipka
2016-11-29 15:54:35 +01:00
committed by Tilmann Scheller
parent 4d2c22a118
commit fb3e8cf8b8
54 changed files with 362 additions and 366 deletions
+5 -5
View File
@@ -18,13 +18,13 @@
#include "ecma-literal-storage.h"
#include "test-common.h"
// Iterations count
/* Iterations count. */
#define test_iters 64
// Subiterations count
/* Subiterations count. */
#define test_sub_iters 64
// Max characters in a string
/* Max characters in a string. */
#define max_characters_in_string 256
static void
@@ -100,7 +100,7 @@ main ()
}
}
// Add empty string
/* Add empty string. */
ecma_find_or_create_literal_string (NULL, 0);
for (uint32_t j = 0; j < test_sub_iters; j++)
@@ -124,7 +124,7 @@ main ()
TEST_ASSERT (lit1 == lit2);
}
// Check empty string exists
/* Check empty string exists. */
TEST_ASSERT (ecma_find_or_create_literal_string (NULL, 0) != JMEM_CP_NULL);
}