diff options
author | Rainer Jung <rjung@apache.org> | 2019-08-05 20:05:12 +0200 |
---|---|---|
committer | Rainer Jung <rjung@apache.org> | 2019-08-05 20:05:12 +0200 |
commit | 5174cd78c1334ad212712982b8cd61b5fb4e75eb (patch) | |
tree | 1e7032cb0c3ffb715da3ca0c02887ad41e42a286 /modules/filters | |
parent | Use the right pragma syntax. (diff) | |
download | apache2-5174cd78c1334ad212712982b8cd61b5fb4e75eb.tar.xz apache2-5174cd78c1334ad212712982b8cd61b5fb4e75eb.zip |
Follow up to r1864438 and r1864435:
Use the right pragma syntax also in the second file.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1864450 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/filters')
-rw-r--r-- | modules/filters/mod_proxy_html.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/filters/mod_proxy_html.c b/modules/filters/mod_proxy_html.c index 39b78604b1..e514f91c73 100644 --- a/modules/filters/mod_proxy_html.c +++ b/modules/filters/mod_proxy_html.c @@ -34,7 +34,9 @@ #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6) #pragma GCC diagnostic push #endif +#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 2) #pragma GCC diagnostic warning "-Wcomment" +#endif #elif defined(__clang__) #pragma clang diagnostic push #pragma clang diagnostic warning "-Wcomment" |