summaryrefslogtreecommitdiff
path: root/CREDITS.TXT
diff options
context:
space:
mode:
authorHoward Hinnant <hhinnant@apple.com>2012-07-29 20:41:19 +0000
committerHoward Hinnant <hhinnant@apple.com>2012-07-29 20:41:19 +0000
commit52918c96580e8b428ca36d20e58791688495a110 (patch)
treea22b4d469163fce8ddc9e828fd0e45b86f12bfae /CREDITS.TXT
parentcdb1d55e23b046f1eda9814fe9e73675e62ba060 (diff)
Andrew Morrow: Mainline clang seems to have recently become more strict about the
consistent application of visibility attributes, which causes some new breakage in libcxxabi: In file included from src/libcxxabi/src/cxa_default_handlers.cpp:19: src/libcxxabi/src/private_typeinfo.h:123:23: error: visibility does not match previous declaration class __attribute__ ((__visibility__(default))) __class_type_info ^ src/libcxxabi/src/private_typeinfo.h:19:13: note: previous attribute is here #pragma GCC visibility push(hidden) ^ 1 error generated. The forward declaration of __class_type_info is picking up hidden visibility from the #pragma, which conflicts with the default visibility applied when the class is later fully declared. I'm assuming that the full declaration has it right (and that the diagnostic is correct), so the attached patch applies the default visibility attribute to the forward declaration. git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@160933 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'CREDITS.TXT')
-rw-r--r--CREDITS.TXT4
1 files changed, 4 insertions, 0 deletions
diff --git a/CREDITS.TXT b/CREDITS.TXT
index a99245f..6ed8548 100644
--- a/CREDITS.TXT
+++ b/CREDITS.TXT
@@ -20,3 +20,7 @@ D: Architect and primary coauthor of libc++abi
N: Nick Kledzik
E: kledzik@apple.com
+
+N: Andrew Morrow
+E: andrew.c.morrow@gmail.com
+D: Minor patches and fixes