This reverts commitc861fe8a71. Unfortunately, this use of hidden visibility attributes causes user-defined specializations of standard-library types to also be marked hidden by default, which is incorrect. See discussion thread on #131156. ...and also reverts the follow-up commits: Revert "[libc++] Add explicit ABI annotations to functions from the block runtime declared in <__functional/function.h> (#140592)" This reverts commit3e4c9dc299. Revert "[libc++] Make ABI annotations explicit for windows-specific code (#140507)" This reverts commitf73287e623. Revert "[libc++][NFC] Replace a few "namespace std" with the correct macro (#140510)" This reverts commit1d411f27c7.
31 lines
1012 B
C++
31 lines
1012 B
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include <vector>
|
|
|
|
_LIBCPP_BEGIN_NAMESPACE_STD
|
|
|
|
#ifndef _LIBCPP_ABI_DO_NOT_EXPORT_VECTOR_BASE_COMMON
|
|
|
|
template <bool>
|
|
struct __vector_base_common;
|
|
|
|
template <>
|
|
struct __vector_base_common<true> {
|
|
[[noreturn]] _LIBCPP_EXPORTED_FROM_ABI void __throw_length_error() const;
|
|
[[noreturn]] _LIBCPP_EXPORTED_FROM_ABI void __throw_out_of_range() const;
|
|
};
|
|
|
|
void __vector_base_common<true>::__throw_length_error() const { std::__throw_length_error("vector"); }
|
|
|
|
void __vector_base_common<true>::__throw_out_of_range() const { std::__throw_out_of_range("vector"); }
|
|
|
|
#endif // _LIBCPP_ABI_DO_NOT_EXPORT_VECTOR_BASE_COMMON
|
|
|
|
_LIBCPP_END_NAMESPACE_STD
|