| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Program Files (x86)/Windows Kits/10/Include/10.0.19041.0/ucrt/ |
Upload File : |
//
// tgmath.h
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// The type-generic math library.
//
#pragma once
#ifndef _TGMATH
#define _TGMATH
#include <corecrt.h>
#if (_CRT_HAS_CXX17 == 1) && !defined(_CRT_USE_C_TGMATH_H)
#include <ctgmath>
#else // ^^^^ /std:c++17 ^^^^ // vvvv _CRT_USE_C_TGMATH_H vvvv
#ifndef _CRT_SILENCE_NONCONFORMING_TGMATH_H
#pragma message(_CRT_WARNING_MESSAGE("UCRT4000", \
"The Universal CRT implementation of tgmath.h does not conform to the C99 standard. " \
"Functionality equivalent to the type-generic functions provided by tgmath.h is available " \
"in <ctgmath> when compiling as C++. " \
"If compiling in C++17 mode or higher (/std:c++17), this header will automatically include <ctgmath> instead. " \
"You can define _CRT_SILENCE_NONCONFORMING_TGMATH_H to acknowledge that you have received this warning."))
#endif // _CRT_SILENCE_NONCONFORMING_TGMATH_H
#include <math.h>
#include <complex.h>
#endif // (_CRT_HAS_CXX17 == 1) && !defined(_CRT_USE_C_TGMATH_H)
#endif // _TGMATH