Add explicit casts to enum-to-integer conversions (#2467)

Clang 6 is more picky about implicit conversions and complains
about loss of presicion and/or change of signedness.

JerryScript-DCO-1.0-Signed-off-by: Akos Kiss akiss@inf.u-szeged.hu
This commit is contained in:
Akos Kiss
2018-08-13 06:01:37 +02:00
committed by yichoi
parent d7cb48d4cc
commit b31e43075a
10 changed files with 24 additions and 24 deletions
+1 -1
View File
@@ -72,5 +72,5 @@ void jerry_port_fatal (jerry_fatal_code_t code) /**< cause of error */
}
#endif /* !DISABLE_EXTRA_API */
exit (code);
exit ((int) code);
} /* jerry_port_fatal */