diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2019-10-23 17:52:30 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2019-10-23 17:52:30 +0000 |
commit | 243a6be085fe6a7ce49169864c68a8839735e49b (patch) | |
tree | abfecf3c23dc7512ca48e72ac418b149c865e0f3 /src/valarray.cpp | |
parent | 1147845301c03308e3419b89c28c77bb6917fe04 (diff) | |
download | src-243a6be085fe6a7ce49169864c68a8839735e49b.tar.gz src-243a6be085fe6a7ce49169864c68a8839735e49b.zip |
Vendor import of stripped libc++ trunk r375505, the last commit beforevendor/libc++/libc++-trunk-r375505vendor/libc++
the upstream Subversion repository was made read-only, and the LLVM
project migrated to GitHub:
https://llvm.org/svn/llvm-project/libcxx/trunk@375505
Notes
Notes:
svn path=/vendor/libc++/dist/; revision=353946
svn path=/vendor/libc++/libc++-r375505/; revision=353947; tag=vendor/libc++/libc++-trunk-r375505
Diffstat (limited to 'src/valarray.cpp')
-rw-r--r-- | src/valarray.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/valarray.cpp b/src/valarray.cpp index 7bf0b4175889..64d26583c74b 100644 --- a/src/valarray.cpp +++ b/src/valarray.cpp @@ -12,8 +12,8 @@ _LIBCPP_BEGIN_NAMESPACE_STD // These two symbols are part of the v1 ABI but not part of the >=v2 ABI. #if _LIBCPP_ABI_VERSION == 1 -template valarray<size_t>::valarray(size_t); -template valarray<size_t>::~valarray(); +template _LIBCPP_FUNC_VIS valarray<size_t>::valarray(size_t); +template _LIBCPP_FUNC_VIS valarray<size_t>::~valarray(); #endif template void valarray<size_t>::resize(size_t, size_t); |