From 75e875732d3c4b923ea0d1f0713b88d35f5ef612 Mon Sep 17 00:00:00 2001 From: Julian Date: Mon, 5 Oct 2020 15:27:24 +0200 Subject: Added flattening of abundant parenthesis in CGenerator (#394) --- pycparser/c_parser.py | 1 + 1 file changed, 1 insertion(+) (limited to 'pycparser/c_parser.py') diff --git a/pycparser/c_parser.py b/pycparser/c_parser.py index c2d82f7..0536e58 100644 --- a/pycparser/c_parser.py +++ b/pycparser/c_parser.py @@ -491,6 +491,7 @@ class CParser(PLYParser): ## ## Precedence and associativity of operators ## + # If this changes, c_generator.CGenerator.precedence_map needs to change as well precedence = ( ('left', 'LOR'), ('left', 'LAND'), -- cgit v1.2.1