Skip to content

Commit

Permalink
I can move (char*)name up to end of previous line
Browse files Browse the repository at this point in the history
... thereby eliminating one line completely.
  • Loading branch information
jkeenan committed Jun 26, 2021
1 parent 419d417 commit faa9d21
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( ((char*)PL_scopestack_name[PL_scopestack_ix-1] == \
(char*)name) \
assert( ((char*)PL_scopestack_name[PL_scopestack_ix-1] == (char*)name) \
|| strEQ(PL_scopestack_name[PL_scopestack_ix-1], name) ); \
} \
pop_scope(); \
Expand Down

0 comments on commit faa9d21

Please sign in to comment.