mirror of
https://github.com/zebrajr/ladybird.git
synced 2025-12-06 00:19:53 +01:00
LibJS: Add parentheses to ALLOCATE_EXECUTION_CONTEXT_ON_NATIVE_STACK()
Just to stop clang-tidy from complaining about it every time.
This commit is contained in:
parent
373307db5b
commit
93788f8057
|
|
@ -118,8 +118,8 @@ private:
|
|||
registers_and_constants_and_locals_count, \
|
||||
arguments_count) \
|
||||
auto execution_context_size = sizeof(JS::ExecutionContext) \
|
||||
+ ((registers_and_constants_and_locals_count) + (arguments_count)) \
|
||||
* sizeof(JS::Value); \
|
||||
+ (((registers_and_constants_and_locals_count) + (arguments_count)) \
|
||||
* sizeof(JS::Value)); \
|
||||
\
|
||||
void* execution_context_memory = alloca(execution_context_size); \
|
||||
\
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user