diff --git a/src/node_contextify.cc b/src/node_contextify.cc index fbbceeb6fec687..d22ca507614b1a 100644 --- a/src/node_contextify.cc +++ b/src/node_contextify.cc @@ -609,9 +609,8 @@ void ContextifyContext::PropertyDefinerCallback( bool read_only = static_cast(attributes) & static_cast(PropertyAttribute::ReadOnly); - bool dont_delete = - static_cast(attributes) & - static_cast(PropertyAttribute::DontDelete); + bool dont_delete = static_cast(attributes) & + static_cast(PropertyAttribute::DontDelete); // If the property is set on the global as neither writable nor // configurable, don't change it on the global or sandbox.