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 c1b92e0 commit cad404eCopy full SHA for cad404e
src/node_process_methods.cc
@@ -73,7 +73,7 @@ static void Abort(const FunctionCallbackInfo<Value>& args) {
73
// For internal testing only, not exposed to userland.
74
static void CauseSegfault(const FunctionCallbackInfo<Value>& args) {
75
// This should crash hard all platforms.
76
- volatile void** d = static_cast<volatile void**>(nullptr);
+ void* volatile* d = static_cast<void* volatile*>(nullptr);
77
*d = nullptr;
78
}
79
0 commit comments