@@ -146,9 +146,9 @@ void DumpJavaScriptBacktrace(FILE* fp);
|
146 | 146 | do { \ |
147 | 147 | /* Make sure that this struct does not end up in inline code, but */ \ |
148 | 148 | /* rather in a read-only data section when modifying this code. */ \ |
149 | | -static const node::AssertionInfo args = { \ |
| 149 | +static const node::AssertionInfo error_and_abort_args = { \ |
150 | 150 | __FILE__ ":" STRINGIFY(__LINE__), #expr, PRETTY_FUNCTION_NAME}; \ |
151 | | -node::Assert(args); \ |
| 151 | +node::Assert(error_and_abort_args); \ |
152 | 152 | /* `node::Assert` doesn't return. Add an [[noreturn]] abort() here to */ \ |
153 | 153 | /* make the compiler happy about no return value in the caller */ \ |
154 | 154 | /* function when calling ERROR_AND_ABORT. */ \ |
|