]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/26_numerics/headers/cmath/functions_std_c++17.cc
libstdc++: Remove redundant -std=gnu++17 option from remaining tests
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 26_numerics / headers / cmath / functions_std_c++17.cc
1 // Copyright (C) 2016-2021 Free Software Foundation, Inc.
2 //
3 // This file is part of the GNU ISO C++ Library. This library is free
4 // software; you can redistribute it and/or modify it under the
5 // terms of the GNU General Public License as published by the
6 // Free Software Foundation; either version 3, or (at your option)
7 // any later version.
8
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
13
14 // You should have received a copy of the GNU General Public License along
15 // with this library; see the file COPYING3. If not see
16 // <http://www.gnu.org/licenses/>.
17
18 // { dg-do compile { target c++17 } }
19
20 #include <cmath>
21
22 namespace gnu
23 {
24 using std::acos;
25 using std::asin;
26 using std::atan;
27 using std::atan2;
28 using std::ceil;
29 using std::cos;
30 using std::cosh;
31 using std::exp;
32 using std::fabs;
33 using std::floor;
34 using std::fmod;
35 using std::frexp;
36 using std::ldexp;
37 using std::log;
38 using std::log10;
39 using std::modf;
40 using std::pow;
41 using std::sin;
42 using std::sinh;
43 using std::sqrt;
44 using std::tan;
45 using std::tanh;
46
47 using std::assoc_laguerre;
48 using std::assoc_laguerref;
49 using std::assoc_laguerrel;
50 using std::assoc_legendre;
51 using std::assoc_legendref;
52 using std::assoc_legendrel;
53 using std::beta;
54 using std::betaf;
55 using std::betal;
56 using std::comp_ellint_1;
57 using std::comp_ellint_1f;
58 using std::comp_ellint_1l;
59 using std::comp_ellint_2;
60 using std::comp_ellint_2f;
61 using std::comp_ellint_2l;
62 using std::comp_ellint_3;
63 using std::comp_ellint_3f;
64 using std::comp_ellint_3l;
65 using std::cyl_bessel_i;
66 using std::cyl_bessel_if;
67 using std::cyl_bessel_il;
68 using std::cyl_bessel_j;
69 using std::cyl_bessel_jf;
70 using std::cyl_bessel_jl;
71 using std::cyl_bessel_k;
72 using std::cyl_bessel_kf;
73 using std::cyl_bessel_kl;
74 using std::cyl_neumann;
75 using std::cyl_neumannf;
76 using std::cyl_neumannl;
77 using std::ellint_1;
78 using std::ellint_1f;
79 using std::ellint_1l;
80 using std::ellint_2;
81 using std::ellint_2f;
82 using std::ellint_2l;
83 using std::ellint_3;
84 using std::ellint_3f;
85 using std::ellint_3l;
86 using std::expint;
87 using std::expintf;
88 using std::expintl;
89 using std::hermite;
90 using std::hermitef;
91 using std::hermitel;
92 using std::laguerre;
93 using std::laguerref;
94 using std::laguerrel;
95 using std::legendre;
96 using std::legendref;
97 using std::legendrel;
98 using std::riemann_zeta;
99 using std::riemann_zetaf;
100 using std::riemann_zetal;
101 using std::sph_bessel;
102 using std::sph_besself;
103 using std::sph_bessell;
104 using std::sph_legendre;
105 using std::sph_legendref;
106 using std::sph_legendrel;
107 using std::sph_neumann;
108 using std::sph_neumannf;
109 using std::sph_neumannl;
110 }