mirror of
https://github.com/postgres/postgres.git
synced 2025-06-26 12:21:12 +03:00
Silence buildfarm warning chatter from bd1276a3c
.
Buildfarm members using -Wextra complained about "warning: suggest braces around empty body in an 'if' statement". Do it gcc's way, though I see no actual readability benefit in this.
This commit is contained in:
@ -2122,7 +2122,9 @@ match_previous_words(int pattern_id,
|
||||
|
||||
/* Dummy statement, allowing all the match rules to look like "else if" */
|
||||
if (0)
|
||||
/* skip */ ;
|
||||
{
|
||||
/* skip */
|
||||
}
|
||||
|
||||
/* gen_tabcomplete.pl begins special processing here */
|
||||
/* BEGIN GEN_TABCOMPLETE */
|
||||
|
Reference in New Issue
Block a user