Warning, /include/c++/v1/ctgmath 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_CTGMATH
0011 #define _LIBCPP_CTGMATH
0012
0013 /*
0014 ctgmath synopsis
0015
0016 #include <ccomplex>
0017 #include <cmath>
0018
0019 */
0020
0021 #if __cplusplus < 201103L && defined(_LIBCPP_USE_FROZEN_CXX03_HEADERS)
0022 # include <__cxx03/ctgmath>
0023 #else
0024 # include <cmath>
0025 # include <complex>
0026
0027 # if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
0028 # pragma GCC system_header
0029 # endif
0030
0031 # if _LIBCPP_STD_VER >= 20
0032
0033 using __standard_header_ctgmath
0034 _LIBCPP_DEPRECATED_("removed in C++20. Include <cmath> and <complex> instead.") _LIBCPP_NODEBUG = void;
0035 using __use_standard_header_ctgmath _LIBCPP_NODEBUG = __standard_header_ctgmath;
0036
0037 # elif _LIBCPP_STD_VER >= 17
0038
0039 using __standard_header_ctgmath _LIBCPP_DEPRECATED_("Include <cmath> and <complex> instead.") _LIBCPP_NODEBUG = void;
0040 using __use_standard_header_ctgmath _LIBCPP_NODEBUG = __standard_header_ctgmath;
0041
0042 # endif
0043
0044 #endif // __cplusplus < 201103L && defined(_LIBCPP_USE_FROZEN_CXX03_HEADERS)
0045
0046 #endif // _LIBCPP_CTGMATH