Define aliases for containers using polymorphic_allocator
commit002ced10e579c67038008ed4df4de57e7f416b2d
authorredi <redi@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 9 Aug 2018 23:25:53 +0000 (9 23:25 +0000)
committerredi <redi@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 9 Aug 2018 23:25:53 +0000 (9 23:25 +0000)
treede7d6dd8a1e2e274f4feb0b9d819fd3f00b6f82e
parent5f739c3243c9e43beaf9835a7594e918e63cfacb
Define aliases for containers using polymorphic_allocator

These aliases are placed in the top-level header, e.g. <vector> not
<bits/stl_vector.h>. This ensures that they refer to whichever of
std::vector or __debug::vector or __profile::vector is in use when the
header is included.

* include/std/deque (std::pmr::deque): Declare alias.
* include/std/forward_list (std::pmr::forward_list): Likewise.
* include/std/list (std::pmr::list): Likewise.
* include/std/map (std::pmr::map, std::pmr::multimap): Likewise.
* include/std/regex (std::pmr::match_results, std::pmr::cmatch)
(std::pmr::smatch, std::pmr::wcmatch, std::pmr::wsmatch): Likewise.
* include/std/set (std::pmr::set, std::pmr::multiset): Likewise.
* include/std/string (std::pmr::basic_string, std::pmr::string)
(std::pmr::u16string, std::pmr::u32string, std::pmr::wstring):
Likewise.
* include/std/unordered_map (std::pmr::unordered_map)
(std::pmr::unordered_multimap): Likewise.
* include/std/unordered_set (std::pmr::unordered_set)
(std::pmr::unordered_multiset): Likewise.
* include/std/vector (std::pmr::vector): Likewise.
* testsuite/21_strings/basic_string/types/pmr_typedefs.cc: New test.
* testsuite/23_containers/deque/types/pmr_typedefs.cc: New test.
* testsuite/23_containers/forward_list/pmr_typedefs.cc: New test.
* testsuite/23_containers/list/pmr_typedefs.cc: New test.
* testsuite/23_containers/map/pmr_typedefs.cc: New test.
* testsuite/23_containers/multimap/pmr_typedefs.cc: New test.
* testsuite/23_containers/multiset/pmr_typedefs.cc: New test.
* testsuite/23_containers/set/pmr_typedefs.cc: New test.
* testsuite/23_containers/unordered_map/pmr_typedefs.cc: New test.
* testsuite/23_containers/unordered_multimap/pmr_typedefs.cc: New
test.
* testsuite/23_containers/unordered_multiset/pmr_typedefs.cc: New
test.
* testsuite/23_containers/unordered_set/pmr_typedefs.cc: New test.
* testsuite/23_containers/vector/pmr_typedefs.cc: New test.
* testsuite/28_regex/match_results/pmr_typedefs.cc: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@263456 138bc75d-0d04-0410-961f-82ee72b054a4
25 files changed:
libstdc++-v3/ChangeLog
libstdc++-v3/include/std/deque
libstdc++-v3/include/std/forward_list
libstdc++-v3/include/std/list
libstdc++-v3/include/std/map
libstdc++-v3/include/std/regex
libstdc++-v3/include/std/set
libstdc++-v3/include/std/string
libstdc++-v3/include/std/unordered_map
libstdc++-v3/include/std/unordered_set
libstdc++-v3/include/std/vector
libstdc++-v3/testsuite/21_strings/basic_string/types/pmr_typedefs.cc [new file with mode: 0644]
libstdc++-v3/testsuite/23_containers/deque/types/pmr_typedefs.cc [new file with mode: 0644]
libstdc++-v3/testsuite/23_containers/forward_list/pmr_typedefs.cc [new file with mode: 0644]
libstdc++-v3/testsuite/23_containers/list/pmr_typedefs.cc [new file with mode: 0644]
libstdc++-v3/testsuite/23_containers/map/pmr_typedefs.cc [new file with mode: 0644]
libstdc++-v3/testsuite/23_containers/multimap/pmr_typedefs.cc [new file with mode: 0644]
libstdc++-v3/testsuite/23_containers/multiset/pmr_typedefs.cc [new file with mode: 0644]
libstdc++-v3/testsuite/23_containers/set/pmr_typedefs.cc [new file with mode: 0644]
libstdc++-v3/testsuite/23_containers/unordered_map/pmr_typedefs.cc [new file with mode: 0644]
libstdc++-v3/testsuite/23_containers/unordered_multimap/pmr_typedefs.cc [new file with mode: 0644]
libstdc++-v3/testsuite/23_containers/unordered_multiset/pmr_typedefs.cc [new file with mode: 0644]
libstdc++-v3/testsuite/23_containers/unordered_set/pmr_typedefs.cc [new file with mode: 0644]
libstdc++-v3/testsuite/23_containers/vector/pmr_typedefs.cc [new file with mode: 0644]
libstdc++-v3/testsuite/28_regex/match_results/pmr_typedefs.cc [new file with mode: 0644]