forked from OSchip/llvm-project
[AddressSpace] Use the macro to set hidden visibility on LocalAddressSpace.
Summary: That attribute has no effect on Windows anyway--classes are hidden by default. Reviewers: mstorsjo, rnk Subscribers: christof, cfe-commits Differential Revision: https://reviews.llvm.org/D51509 llvm-svn: 341210
This commit is contained in:
parent
8e864be70a
commit
226570dcfc
|
@ -180,7 +180,7 @@ struct UnwindInfoSections {
|
|||
/// LocalAddressSpace is used as a template parameter to UnwindCursor when
|
||||
/// unwinding a thread in the same process. The wrappers compile away,
|
||||
/// making local unwinds fast.
|
||||
class __attribute__((visibility("hidden"))) LocalAddressSpace {
|
||||
class _LIBUNWIND_HIDDEN LocalAddressSpace {
|
||||
public:
|
||||
typedef uintptr_t pint_t;
|
||||
typedef intptr_t sint_t;
|
||||
|
|
Loading…
Reference in New Issue