You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rj...@apache.org on 2019/08/05 18:05:12 UTC

svn commit: r1864450 - /httpd/httpd/trunk/modules/filters/mod_proxy_html.c

Author: rjung
Date: Mon Aug  5 18:05:12 2019
New Revision: 1864450

URL: http://svn.apache.org/viewvc?rev=1864450&view=rev
Log:
Follow up to r1864438 and r1864435:
Use the right pragma syntax also in the second file.

Modified:
    httpd/httpd/trunk/modules/filters/mod_proxy_html.c

Modified: httpd/httpd/trunk/modules/filters/mod_proxy_html.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/filters/mod_proxy_html.c?rev=1864450&r1=1864449&r2=1864450&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/filters/mod_proxy_html.c (original)
+++ httpd/httpd/trunk/modules/filters/mod_proxy_html.c Mon Aug  5 18:05:12 2019
@@ -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"