Skip to content

Commit

Permalink
Eliminate duplicate condition
Browse files Browse the repository at this point in the history
  • Loading branch information
jkeenan committed Jun 26, 2021
1 parent 7c020b7 commit 5695015
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions scope.h
Expand Up @@ -208,8 +208,7 @@ scope has the given name. C<name> must be a literal string.
STMT_START { \
DEBUG_SCOPE("LEAVE \"" name "\"") \
if (PL_scopestack_name) { \
assert( ( strEQ(PL_scopestack_name[PL_scopestack_ix-1], name) ) \
|| strEQ(PL_scopestack_name[PL_scopestack_ix-1], name) ); \
assert( strEQ(PL_scopestack_name[PL_scopestack_ix-1], name) ); \
} \
pop_scope(); \
} STMT_END
Expand Down

0 comments on commit 5695015

Please sign in to comment.