Back to home page

EIC code displayed by LXR

 
 

    


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