1. In 6500e4fd, FORCEINLINE in winnt.h was fixed to omit 'extern'
 2. In d66ee5e8, FORCEINLINE was also fixed in ntdef.h

Now, it's time to fix one more definition.

Cause for this change is still the same - 'extern' doesn't play with 'static':
http://sourceforge.net/p/mingw-w64/mailman/message/28323884/
---
 mingw-w64-headers/crt/_mingw.h.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mingw-w64-headers/crt/_mingw.h.in 
b/mingw-w64-headers/crt/_mingw.h.in
index 2742b11..fc1f9dd 100644
--- a/mingw-w64-headers/crt/_mingw.h.in
+++ b/mingw-w64-headers/crt/_mingw.h.in
@@ -256,7 +256,7 @@ typedef int __int128 __attribute__ ((__mode__ (TI)));
 #ifdef __cplusplus
 #define __forceinline inline __attribute__((__always_inline__))
 #else
-#define __forceinline extern __inline__ 
__attribute__((__always_inline__,__gnu_inline__))
+#define __forceinline __inline__ 
__attribute__((__always_inline__,__gnu_inline__))
 #endif /* __cplusplus */
 #endif /* __GNUC__ */
 
-- 
2.1.1


------------------------------------------------------------------------------
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311&iu=/4140/ostg.clktrk
_______________________________________________
Mingw-w64-public mailing list
Mingw-w64-public@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mingw-w64-public

Reply via email to