You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-libs/devil/files/devil-1.7.8-restrict.patch

24 lines
587 B

Patch from Sven Eden via bug 552370
https://bugs.gentoo.org/show_bug.cgi?id=552370
--- a/include/IL/il.h 2009-03-08 08:10:08.000000000 +0100
+++ b/include/IL/il.h 2015-09-03 16:22:04.056637044 +0200
@@ -63,13 +63,13 @@
#endif
#endif
-#ifdef RESTRICT_KEYWORD
-#define RESTRICT restrict
-#define CONST_RESTRICT const restrict
+#if defined(RESTRICT_KEYWORD) && !defined(__cplusplus)
+#define RESTRICT __restrict__
+#define CONST_RESTRICT const __restrict__
#else
#define RESTRICT
#define CONST_RESTRICT const
-#endif
+#endif // RESTRICT keyword and not C++
#include <stdio.h>