diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2016-06-14 15:25:46 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2016-06-14 15:25:46 +0000 |
commit | 9df8f6c4728254e55890c80cf5e351363b164d2e (patch) | |
tree | 666fcca2e37be2fecd9a33d2498a7b6247b089bc /libcxx/test/std/experimental/memory | |
parent | c0c683509681763f93a7b50832fe668a4533812d (diff) | |
download | bcm5719-llvm-9df8f6c4728254e55890c80cf5e351363b164d2e.tar.gz bcm5719-llvm-9df8f6c4728254e55890c80cf5e351363b164d2e.zip |
Found a couple bugs in the test suite. No functionality change.
llvm-svn: 272679
Diffstat (limited to 'libcxx/test/std/experimental/memory')
-rw-r--r-- | libcxx/test/std/experimental/memory/memory.resource.aliases/header_unordered_set_synop.pass.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/test/std/experimental/memory/memory.resource.aliases/header_unordered_set_synop.pass.cpp b/libcxx/test/std/experimental/memory/memory.resource.aliases/header_unordered_set_synop.pass.cpp index 697ed50eabe..d427fe7c4ab 100644 --- a/libcxx/test/std/experimental/memory/memory.resource.aliases/header_unordered_set_synop.pass.cpp +++ b/libcxx/test/std/experimental/memory/memory.resource.aliases/header_unordered_set_synop.pass.cpp @@ -60,7 +60,7 @@ int main() static_assert(std::is_same<StdSet, PmrSet>::value, ""); } { - pmr::unordered_set<int, int> m; + pmr::unordered_set<int> m; assert(m.get_allocator().resource() == pmr::get_default_resource()); } { @@ -79,7 +79,7 @@ int main() static_assert(std::is_same<StdSet, PmrSet>::value, ""); } { - pmr::unordered_multiset<int, int> m; + pmr::unordered_multiset<int> m; assert(m.get_allocator().resource() == pmr::get_default_resource()); } } |