mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 04:09:13 +00: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
Notes:
github-actions[bot]
2025-04-27 23:25:03 +00:00
Author: https://github.com/awesomekling
Commit: 93788f8057
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4497
Reviewed-by: https://github.com/Hendiadyoin1
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue