We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b9e24a commit a7d5594Copy full SHA for a7d5594
jerry-core/include/jerryscript-compiler.h
@@ -70,7 +70,7 @@ JERRY_C_API_BEGIN
70
* instead.
71
*/
72
void *__cdecl _alloca (size_t _Size);
73
-#define JERRY_VLA(type, name, size) type *name = (type *) (_alloca (sizeof (type) * size))
+#define JERRY_VLA(type, name, size) type *name = (type *) (_alloca (sizeof (type) * (size)))
74
75
#endif /* _MSC_VER */
76
0 commit comments