summaryrefslogtreecommitdiffstats
path: root/test/std/containers/unord/unord.multiset/bucket_count.pass.cpp
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2017-03-20 18:55:32 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-03-20 18:55:32 +0000
commit484d8fb3291dd4d29c3d9ef6634cb9fdceb08595 (patch)
tree98be0728c8a7e96003719c4145662f487a663d81 /test/std/containers/unord/unord.multiset/bucket_count.pass.cpp
parent43580c8f896fc0a272d6a45b280d6f08fb7c7719 (diff)
parented31f4b9be19ad4eaff38d16fe13a5f8e8da2c45 (diff)
downloadexternal_libcxx-484d8fb3291dd4d29c3d9ef6634cb9fdceb08595.tar.gz
external_libcxx-484d8fb3291dd4d29c3d9ef6634cb9fdceb08595.tar.bz2
external_libcxx-484d8fb3291dd4d29c3d9ef6634cb9fdceb08595.zip
Merge to upstream r297772. am: b9e7f084bd am: fabe890b75
am: ed31f4b9be Change-Id: Ieb19cbc938b9511d6441b9ac7cf6a3e13c4daf74
Diffstat (limited to 'test/std/containers/unord/unord.multiset/bucket_count.pass.cpp')
-rw-r--r--test/std/containers/unord/unord.multiset/bucket_count.pass.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/std/containers/unord/unord.multiset/bucket_count.pass.cpp b/test/std/containers/unord/unord.multiset/bucket_count.pass.cpp
index ec4d0e675..c60a81167 100644
--- a/test/std/containers/unord/unord.multiset/bucket_count.pass.cpp
+++ b/test/std/containers/unord/unord.multiset/bucket_count.pass.cpp
@@ -25,14 +25,11 @@ int main()
{
{
typedef std::unordered_multiset<int> C;
- typedef C::const_iterator I;
- typedef int P;
const C c;
LIBCPP_ASSERT(c.bucket_count() == 0);
}
{
typedef std::unordered_multiset<int> C;
- typedef C::const_iterator I;
typedef int P;
P a[] =
{
@@ -52,15 +49,12 @@ int main()
{
typedef std::unordered_multiset<int, std::hash<int>,
std::equal_to<int>, min_allocator<int>> C;
- typedef C::const_iterator I;
- typedef int P;
const C c;
LIBCPP_ASSERT(c.bucket_count() == 0);
}
{
typedef std::unordered_multiset<int, std::hash<int>,
std::equal_to<int>, min_allocator<int>> C;
- typedef C::const_iterator I;
typedef int P;
P a[] =
{