Commit 17a8e245 authored by Nikolas Klauser's avatar Nikolas Klauser
Browse files

[libc++][PSTL] Remove _PSTL_HIDE_FROM_ABI_{PUSH,POP} macros

Reviewed By: ldionne, #libc

Spies: libcxx-commits, miyuki

Differential Revision: https://reviews.llvm.org/D149556
parent 5a49fee3
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -16,8 +16,6 @@

#include "pstl_config.h"

_PSTL_HIDE_FROM_ABI_PUSH

namespace __pstl {
namespace __internal {

@@ -1768,6 +1766,4 @@ bool __pattern_lexicographical_compare(
} // namespace __internal
} // namespace __pstl

_PSTL_HIDE_FROM_ABI_POP

#endif /* _PSTL_ALGORITHM_FWD_H */
+0 −4
Original line number Diff line number Diff line
@@ -24,8 +24,6 @@
#include "pstl_config.h"
#include "unseq_backend_simd.h"

_PSTL_HIDE_FROM_ABI_PUSH

namespace __pstl {
namespace __internal {

@@ -4339,6 +4337,4 @@ bool __pattern_lexicographical_compare(
} // namespace __internal
} // namespace __pstl

_PSTL_HIDE_FROM_ABI_POP

#endif /* _PSTL_ALGORITHM_IMPL_H */
+0 −4
Original line number Diff line number Diff line
@@ -14,8 +14,6 @@

#include "pstl_config.h"

_PSTL_HIDE_FROM_ABI_PUSH

namespace __pstl {
namespace execution {
inline namespace v1 {
@@ -73,6 +71,4 @@ struct __parallel_tag;

} // namespace __pstl

_PSTL_HIDE_FROM_ABI_POP

#endif /* _PSTL_EXECUTION_POLICY_DEFS_H */
+0 −4
Original line number Diff line number Diff line
@@ -16,8 +16,6 @@
#include "execution_defs.h"
#include "pstl_config.h"

_PSTL_HIDE_FROM_ABI_PUSH

namespace __pstl {
namespace __internal {

@@ -88,6 +86,4 @@ __select_backend(__pstl::execution::parallel_unsequenced_policy, _IteratorTypes&
} // namespace __internal
} // namespace __pstl

_PSTL_HIDE_FROM_ABI_POP

#endif /* _PSTL_EXECUTION_IMPL_H */
+0 −4
Original line number Diff line number Diff line
@@ -16,8 +16,6 @@
#include "execution_defs.h"
#include "pstl_config.h"

_PSTL_HIDE_FROM_ABI_PUSH

namespace std {

// [alg.find.end]
@@ -695,6 +693,4 @@ __pstl::__internal::__enable_if_execution_policy<_ExecutionPolicy, bool> lexicog

} // namespace std

_PSTL_HIDE_FROM_ABI_POP

#endif /* _PSTL_GLUE_ALGORITHM_DEFS_H */
Loading