valarray.cpp (0b57cec536236d46e3dba9bd041533462f33dbb7) valarray.cpp (e40139ff33b48b56a24c808b166b04b8ee6f5b21)
1//===------------------------ valarray.cpp --------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#include "valarray"
10
11_LIBCPP_BEGIN_NAMESPACE_STD
12
13// These two symbols are part of the v1 ABI but not part of the >=v2 ABI.
14#if _LIBCPP_ABI_VERSION == 1
1//===------------------------ valarray.cpp --------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#include "valarray"
10
11_LIBCPP_BEGIN_NAMESPACE_STD
12
13// These two symbols are part of the v1 ABI but not part of the >=v2 ABI.
14#if _LIBCPP_ABI_VERSION == 1
15template valarray<size_t>::valarray(size_t);
16template valarray<size_t>::~valarray();
15template _LIBCPP_FUNC_VIS valarray<size_t>::valarray(size_t);
16template _LIBCPP_FUNC_VIS valarray<size_t>::~valarray();
17#endif
18
19template void valarray<size_t>::resize(size_t, size_t);
20
21void
22gslice::__init(size_t __start)
23{
24 valarray<size_t> __indices(__size_.size());

--- 33 unchanged lines hidden ---
17#endif
18
19template void valarray<size_t>::resize(size_t, size_t);
20
21void
22gslice::__init(size_t __start)
23{
24 valarray<size_t> __indices(__size_.size());

--- 33 unchanged lines hidden ---