[xiph-commits] r16010 - branches/theora-thusnelda/lib

tterribe at svn.xiph.org tterribe at svn.xiph.org
Sun May 17 04:10:38 PDT 2009


Author: tterribe
Date: 2009-05-17 04:10:37 -0700 (Sun, 17 May 2009)
New Revision: 16010

Modified:
   branches/theora-thusnelda/lib/internal.h
Log:
Fix gcc prereq test.


Modified: branches/theora-thusnelda/lib/internal.h
===================================================================
--- branches/theora-thusnelda/lib/internal.h	2009-05-15 15:56:11 UTC (rev 16009)
+++ branches/theora-thusnelda/lib/internal.h	2009-05-17 11:10:37 UTC (rev 16010)
@@ -31,8 +31,10 @@
 #  pragma warning(disable:4799)
 # endif
 /*You, too, gcc.*/
-# if defined(__GNUC_PREREQ)&&__GNUC_PREREQ(4,2)
-#  pragma GCC diagnostic ignored "-Wparentheses"
+# if defined(__GNUC_PREREQ)
+#  if __GNUC_PREREQ(4,2)
+#   pragma GCC diagnostic ignored "-Wparentheses"
+#  endif
 # endif
 
 # include "dec/ocintrin.h"



More information about the commits mailing list