summaryrefslogtreecommitdiffstats
path: root/libcxx/include/valarray
diff options
context:
space:
mode:
authorLouis Dionne <ldionne@apple.com>2018-10-16 19:26:23 +0000
committerLouis Dionne <ldionne@apple.com>2018-10-16 19:26:23 +0000
commit7833b88ad882079efaf17958872120c051cbb886 (patch)
tree33bbc7b501e98d1233fb05acd3e1228943071db7 /libcxx/include/valarray
parent547d824da661fedaeeda3a4bcb83a3464fa1b7b9 (diff)
downloadbcm5719-llvm-7833b88ad882079efaf17958872120c051cbb886.tar.gz
bcm5719-llvm-7833b88ad882079efaf17958872120c051cbb886.zip
[libcxx] Remove _LIBCPP_EXTERN_TEMPLATE_INLINE_VISIBILITY
That macro has been defined to _LIBCPP_HIDE_FROM_ABI_AFTER_V1 for many weeks now, so we're actually replacing uses of it for uses of _LIBCPP_HIDE_FROM_ABI_AFTER_V1 directly. This should not change or break anything since the two macros are 100% equivalent, unless somebody is (incorrectly!) relying on _LIBCPP_EXTERN_TEMPLATE_INLINE_VISIBILITY being defined. llvm-svn: 344641
Diffstat (limited to 'libcxx/include/valarray')
-rw-r--r--libcxx/include/valarray4
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/include/valarray b/libcxx/include/valarray
index 8d3892ad35d..a941e3ec441 100644
--- a/libcxx/include/valarray
+++ b/libcxx/include/valarray
@@ -803,7 +803,7 @@ public:
// construct/destroy:
_LIBCPP_INLINE_VISIBILITY
valarray() : __begin_(0), __end_(0) {}
- inline _LIBCPP_EXTERN_TEMPLATE_INLINE_VISIBILITY
+ inline _LIBCPP_HIDE_FROM_ABI_AFTER_V1
explicit valarray(size_t __n);
_LIBCPP_INLINE_VISIBILITY
valarray(const value_type& __x, size_t __n);
@@ -818,7 +818,7 @@ public:
valarray(const gslice_array<value_type>& __ga);
valarray(const mask_array<value_type>& __ma);
valarray(const indirect_array<value_type>& __ia);
- inline _LIBCPP_EXTERN_TEMPLATE_INLINE_VISIBILITY
+ inline _LIBCPP_HIDE_FROM_ABI_AFTER_V1
~valarray();
// assignment:
OpenPOWER on IntegriCloud