Implement full support for non-pointer types in custom allocators. This is for the associative containers only. This work still needs to be done on the unordered and sequence containers. Fixes http://llvm.org/bugs/show_bug.cgi?id=15978
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@184358 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -16,11 +16,13 @@
|
||||
#include <set>
|
||||
#include <cassert>
|
||||
|
||||
#include "../../min_allocator.h"
|
||||
|
||||
int main()
|
||||
{
|
||||
typedef int V;
|
||||
typedef std::set<int> M;
|
||||
{
|
||||
typedef int V;
|
||||
typedef std::set<int> M;
|
||||
typedef M::size_type R;
|
||||
V ar[] =
|
||||
{
|
||||
@@ -53,4 +55,41 @@ int main()
|
||||
r = m.count(4);
|
||||
assert(r == 0);
|
||||
}
|
||||
#if __cplusplus >= 201103L
|
||||
{
|
||||
typedef int V;
|
||||
typedef std::set<int, std::less<int>, min_allocator<int>> M;
|
||||
typedef M::size_type R;
|
||||
V ar[] =
|
||||
{
|
||||
5,
|
||||
6,
|
||||
7,
|
||||
8,
|
||||
9,
|
||||
10,
|
||||
11,
|
||||
12
|
||||
};
|
||||
const M m(ar, ar+sizeof(ar)/sizeof(ar[0]));
|
||||
R r = m.count(5);
|
||||
assert(r == 1);
|
||||
r = m.count(6);
|
||||
assert(r == 1);
|
||||
r = m.count(7);
|
||||
assert(r == 1);
|
||||
r = m.count(8);
|
||||
assert(r == 1);
|
||||
r = m.count(9);
|
||||
assert(r == 1);
|
||||
r = m.count(10);
|
||||
assert(r == 1);
|
||||
r = m.count(11);
|
||||
assert(r == 1);
|
||||
r = m.count(12);
|
||||
assert(r == 1);
|
||||
r = m.count(4);
|
||||
assert(r == 0);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user