Add parameter names to function declarations. (#1498)
It's generally considered a bad programming practice to have function declarations without parameter names. This is another legacy from the early days of the project. Fix in one go to minimize history disruption. Used a custom clang-tidy check to create the bulk of the change. JerryScript-DCO-1.0-Signed-off-by: Tilmann Scheller t.scheller@samsung.com
This commit is contained in:
@@ -99,7 +99,7 @@ typedef struct
|
||||
uint8_t status_flags; /**< status flags */
|
||||
} lexer_literal_t;
|
||||
|
||||
void util_free_literal (lexer_literal_t *);
|
||||
void util_free_literal (lexer_literal_t *literal_p);
|
||||
|
||||
#ifdef PARSER_DUMP_BYTE_CODE
|
||||
void util_print_literal (lexer_literal_t *);
|
||||
|
||||
Reference in New Issue
Block a user