Module Name:    src
Committed By:   martin
Date:           Sat Mar  8 19:15:32 UTC 2014

Modified Files:
        src/external/gpl3/gcc/dist/gcc/config/i386: pmm_malloc.h

Log Message:
Kill the "throw()" on a forward declaration for posix_memalign (it does
not match our base declaration and may cause warnings).
Ok: joerg


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.2 -r1.2 \
    src/external/gpl3/gcc/dist/gcc/config/i386/pmm_malloc.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/gpl3/gcc/dist/gcc/config/i386/pmm_malloc.h
diff -u src/external/gpl3/gcc/dist/gcc/config/i386/pmm_malloc.h:1.1.1.2 src/external/gpl3/gcc/dist/gcc/config/i386/pmm_malloc.h:1.2
--- src/external/gpl3/gcc/dist/gcc/config/i386/pmm_malloc.h:1.1.1.2	Sat Mar  1 08:43:17 2014
+++ src/external/gpl3/gcc/dist/gcc/config/i386/pmm_malloc.h	Sat Mar  8 19:15:32 2014
@@ -31,7 +31,7 @@
 #ifndef __cplusplus
 extern int posix_memalign (void **, size_t, size_t);
 #else
-extern "C" int posix_memalign (void **, size_t, size_t) throw ();
+extern "C" int posix_memalign (void **, size_t, size_t);
 #endif
 
 static __inline void *

Reply via email to