Skip to content

Commit

Permalink
fix cpp formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
fhinkel committed Jan 30, 2024
1 parent bf79653 commit 2510adc
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/node_contextify.cc
Original file line number Diff line number Diff line change
Expand Up @@ -609,9 +609,8 @@ void ContextifyContext::PropertyDefinerCallback(
bool read_only =
static_cast<int>(attributes) &
static_cast<int>(PropertyAttribute::ReadOnly);
bool dont_delete =
static_cast<int>(attributes) &
static_cast<int>(PropertyAttribute::DontDelete);
bool dont_delete = static_cast<int>(attributes) &
static_cast<int>(PropertyAttribute::DontDelete);

// If the property is set on the global as neither writable nor
// configurable, don't change it on the global or sandbox.
Expand Down

0 comments on commit 2510adc

Please sign in to comment.