We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a840ce commit f7af8caCopy full SHA for f7af8ca
src/node_process_methods.cc
@@ -72,7 +72,7 @@ static void Abort(const FunctionCallbackInfo<Value>& args) {
72
// For internal testing only, not exposed to userland.
73
static void CauseSegfault(const FunctionCallbackInfo<Value>& args) {
74
// This should crash hard all platforms.
75
- volatile void** d = static_cast<volatile void**>(nullptr);
+ void* volatile* d = static_cast<void* volatile*>(nullptr);
76
*d = nullptr;
77
}
78
0 commit comments