mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
7.8.1 addresses a critical issue regarding backward binary compatibility with version 7.8.0. Closes: https://bugs.gentoo.org/927788 Closes: https://bugs.gentoo.org/927890 Signed-off-by: Paul Zander <negril.nx+gentoo@gmail.com> Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
14 lines
529 B
Diff
14 lines
529 B
Diff
diff --git a/src/Standard/Standard.cxx b/src/Standard/Standard.cxx
|
|
index bb06de7..f73164f 100644
|
|
--- a/src/Standard/Standard.cxx
|
|
+++ b/src/Standard/Standard.cxx
|
|
@@ -28,7 +28,7 @@
|
|
#elif (defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 1)) && (defined(__i386) || defined(__x86_64)))
|
|
#include <mm_malloc.h>
|
|
#else
|
|
-extern "C" int posix_memalign(void** thePtr, size_t theAlign, size_t theSize);
|
|
+extern "C" int posix_memalign(void** thePtr, size_t theAlign, size_t theSize) throw ();
|
|
#endif
|
|
|
|
namespace
|