]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/experimental/names.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / experimental / names.cc
1 // Copyright (C) 2017-2020 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++11 } }
19
20 // Define macros for some common variables names that we must not use for
21 // naming variables, parameters etc. in the library.
22
23 #include "../17_intro/names.cc"
24 // Filesystem
25 #if __has_include(<experimental/filesystem>)
26 # include <experimental/filesystem>
27 #endif
28
29 #if __cplusplus >= 201402L
30
31 // Library Fundamentals
32 #include <experimental/algorithm>
33 #include <experimental/any>
34 #include <experimental/array>
35 #include <experimental/chrono>
36 #include <experimental/deque>
37 #include <experimental/forward_list>
38 #include <experimental/functional>
39 #include <experimental/iterator>
40 #include <experimental/list>
41 #include <experimental/map>
42 #include <experimental/memory>
43 #include <experimental/memory_resource>
44 #include <experimental/numeric>
45 #include <experimental/optional>
46 #include <experimental/propagate_const>
47 #include <experimental/random>
48 #include <experimental/ratio>
49 #include <experimental/regex>
50 #include <experimental/set>
51 #include <experimental/source_location>
52 #include <experimental/string>
53 #include <experimental/string_view>
54 #include <experimental/system_error>
55 #include <experimental/tuple>
56 #include <experimental/type_traits>
57 #include <experimental/unordered_map>
58 #include <experimental/unordered_set>
59 #include <experimental/utility>
60 #include <experimental/vector>
61 // Networking
62 #ifdef _GLIBCXX_HAS_GTHREADS
63 # include <experimental/buffer>
64 # include <experimental/internet>
65 # include <experimental/io_context>
66 # include <experimental/net>
67 # include <experimental/netfwd>
68 # include <experimental/socket>
69 # include <experimental/timer>
70 # include <experimental/executor>
71 #endif
72
73 #endif // C++14