diff options
author | Marek Polacek <polacek@redhat.com> | 2024-04-04 19:28:00 -0400 |
---|---|---|
committer | Marek Polacek <polacek@redhat.com> | 2024-04-05 09:11:46 -0400 |
commit | e4d074321bcafa6504ee6b77754b4450a4622f9d (patch) | |
tree | a2b4a5d815651a53e9a776c9227cd9bf26d1b389 | |
parent | 8c9063825ce726fcbbc067d8a6d062cc2d4acf5e (diff) | |
download | gcc-e4d074321bcafa6504ee6b77754b4450a4622f9d.zip gcc-e4d074321bcafa6504ee6b77754b4450a4622f9d.tar.gz gcc-e4d074321bcafa6504ee6b77754b4450a4622f9d.tar.bz2 |
c-family: remove dead #undef
The #undef was added in r0-90320-g100d537d7a7b5c but it never did
anything.
gcc/c-family/ChangeLog:
* c-warn.cc (warn_about_parentheses): Remove an #undef.
-rw-r--r-- | gcc/c-family/c-warn.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/c-family/c-warn.cc b/gcc/c-family/c-warn.cc index 8168696..bff87be 100644 --- a/gcc/c-family/c-warn.cc +++ b/gcc/c-family/c-warn.cc @@ -2176,7 +2176,6 @@ warn_about_parentheses (location_t loc, enum tree_code code, } return; } -#undef NOT_A_BOOLEAN_EXPR_P } /* If LABEL (a LABEL_DECL) has not been used, issue a warning. */ |