From faa9d210a7790ab0b6f28ff06e9497020f554a85 Mon Sep 17 00:00:00 2001 From: James E Keenan Date: Sat, 26 Jun 2021 01:40:47 +0000 Subject: [PATCH] I can move (char*)name up to end of previous line ... thereby eliminating one line completely. --- scope.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scope.h b/scope.h index 70c8dc5142fb..fb7b209e01fc 100644 --- a/scope.h +++ b/scope.h @@ -208,8 +208,7 @@ scope has the given name. C 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(); \