-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
To align with industry standard order of operations, and with EDKII parsers, equals (`==`) and not equals (`!=`) should have a higher precedence than logical OR (`||`) and logical AND (`&&`) operators. Prior to this commit, they shared the same precedence level which would lead to evaluations similar to `!if RACECAR == RACECAR || RACECAR == STREETCAR` being completed in the wrong order as compared to EDKII parsers. Additionally, this removes the parentheses that were inserted at the beginning and end of tokens as they appear to serve no further purpose.
- Loading branch information
1 parent
55350f3
commit c4a8dd5
Showing
2 changed files
with
87 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters