Warning, /include/c++/v1/experimental/utility is written in an unsupported language. File is not indexed.
0001 // -*- C++ -*-
0002 //===----------------------------------------------------------------------===//
0003 //
0004 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
0005 // See https://llvm.org/LICENSE.txt for license information.
0006 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
0007 //
0008 //===----------------------------------------------------------------------===//
0009
0010 #ifndef _LIBCPP_EXPERIMENTAL_UTILITY
0011 #define _LIBCPP_EXPERIMENTAL_UTILITY
0012
0013 /*
0014 experimental/utility synopsis
0015
0016 // C++1y
0017
0018 #include <utility>
0019
0020 namespace std {
0021 namespace experimental {
0022 inline namespace fundamentals_v1 {
0023
0024 3.1.2, erased-type placeholder
0025 struct erased_type { };
0026
0027 } // namespace fundamentals_v1
0028 } // namespace experimental
0029 } // namespace std
0030
0031 */
0032
0033 #if __cplusplus < 201103L && defined(_LIBCPP_USE_FROZEN_CXX03_HEADERS)
0034 # include <__cxx03/experimental/utility>
0035 #else
0036 # include <__config>
0037 # include <utility>
0038
0039 # if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
0040 # pragma GCC system_header
0041 # endif
0042
0043 _LIBCPP_BEGIN_NAMESPACE_LFTS
0044
0045 struct _LIBCPP_TEMPLATE_VIS erased_type {};
0046
0047 _LIBCPP_END_NAMESPACE_LFTS
0048
0049 # if !defined(_LIBCPP_REMOVE_TRANSITIVE_INCLUDES) && _LIBCPP_STD_VER <= 20
0050 # include <cstddef>
0051 # endif
0052 #endif // __cplusplus < 201103L && defined(_LIBCPP_USE_FROZEN_CXX03_HEADERS)
0053
0054 #endif /* _LIBCPP_EXPERIMENTAL_UTILITY */