8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 048d421 commit 2d77bd2Copy full SHA for 2d77bd2
src/util.h
@@ -144,9 +144,9 @@ void DumpJavaScriptBacktrace(FILE* fp);
144
do { \
145
/* Make sure that this struct does not end up in inline code, but */ \
146
/* rather in a read-only data section when modifying this code. */ \
147
- static const node::AssertionInfo args = { \
+ static const node::AssertionInfo error_and_abort_args = { \
148
__FILE__ ":" STRINGIFY(__LINE__), #expr, PRETTY_FUNCTION_NAME}; \
149
- node::Assert(args); \
+ node::Assert(error_and_abort_args); \
150
/* `node::Assert` doesn't return. Add an [[noreturn]] abort() here to */ \
151
/* make the compiler happy about no return value in the caller */ \
152
/* function when calling ERROR_AND_ABORT. */ \
0 commit comments