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:
Robert Fancsik
2021-11-05 14:15:47 +01:00
committed by GitHub
parent bc091e1742
commit badfdf4dba
564 changed files with 10195 additions and 15090 deletions
+4 -4
View File
@@ -15,17 +15,17 @@
#include <stdlib.h>
#include "jerryscript-port.h"
#include "jerryscript-port-default.h"
#include "jerryscript-port.h"
/**
* Default implementation of jerry_port_fatal. Calls 'abort' if exit code is
* non-zero, 'exit' otherwise.
*/
void jerry_port_fatal (jerry_fatal_code_t code) /**< cause of error */
void
jerry_port_fatal (jerry_fatal_code_t code) /**< cause of error */
{
if (code != 0
&& code != ERR_OUT_OF_MEMORY)
if (code != 0 && code != ERR_OUT_OF_MEMORY)
{
abort ();
}