Skip to content

Commit

Permalink
Update two tests to reflect recent change to mod_full_paren_if_bool
Browse files Browse the repository at this point in the history
  • Loading branch information
bengardner committed Oct 5, 2011
1 parent 3dfc51b commit ee20cff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/output/c/01000-mod-paren.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ void foo(void)
{
if (!value
#ifdef OPTION
|| (value == SOMECONST)
|| value == SOMECONST
#endif /* comment */
)
{
Expand Down
2 changes: 1 addition & 1 deletion tests/output/c/01002-mod-paren.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ void foo(void)
{
if (!value
#ifdef OPTION
|| (value == SOMECONST)
|| value == SOMECONST
#endif /* comment */
)
{
Expand Down

0 comments on commit ee20cff

Please sign in to comment.