Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 #ifndef _GLIBCXX_TR1_CFENV
00030 #define _GLIBCXX_TR1_CFENV 1
00031
00032 #pragma GCC system_header
00033
00034 #include <bits/c++config.h>
00035
00036 #if _GLIBCXX_HAVE_FENV_H
00037 # include <fenv.h>
00038 #endif
00039
00040 #ifdef _GLIBCXX_USE_C99_FENV_TR1
00041
00042 #undef feclearexcept
00043 #undef fegetexceptflag
00044 #undef feraiseexcept
00045 #undef fesetexceptflag
00046 #undef fetestexcept
00047 #undef fegetround
00048 #undef fesetround
00049 #undef fegetenv
00050 #undef feholdexcept
00051 #undef fesetenv
00052 #undef feupdateenv
00053
00054 namespace std _GLIBCXX_VISIBILITY(default)
00055 {
00056 namespace tr1
00057 {
00058
00059 using ::fenv_t;
00060 using ::fexcept_t;
00061
00062
00063 using ::feclearexcept;
00064 using ::fegetexceptflag;
00065 using ::feraiseexcept;
00066 using ::fesetexceptflag;
00067 using ::fetestexcept;
00068
00069 using ::fegetround;
00070 using ::fesetround;
00071
00072 using ::fegetenv;
00073 using ::feholdexcept;
00074 using ::fesetenv;
00075 using ::feupdateenv;
00076 }
00077 }
00078
00079 #endif // _GLIBCXX_USE_C99_FENV_TR1
00080
00081 #endif // _GLIBCXX_TR1_CFENV