mirror of git://gcc.gnu.org/git/gcc.git
explicit_instantiation.cc: Add another instantiation.
2011-06-11 Jonathan Wakely <jwakely.gcc@gmail.com> * testsuite/20_util/allocator_traits/requirements/ explicit_instantiation.cc: Add another instantiation. From-SVN: r174957
This commit is contained in:
parent
ea89702bbf
commit
a9a76bae8b
|
@ -1,3 +1,8 @@
|
||||||
|
2011-06-11 Jonathan Wakely <jwakely.gcc@gmail.com>
|
||||||
|
|
||||||
|
* testsuite/20_util/allocator_traits/requirements/
|
||||||
|
explicit_instantiation.cc: Add another instantiation.
|
||||||
|
|
||||||
2011-06-11 Jonathan Wakely <jwakely.gcc@gmail.com>
|
2011-06-11 Jonathan Wakely <jwakely.gcc@gmail.com>
|
||||||
|
|
||||||
* testsuite/20_util/allocator_traits/requirements/typedefs.cc: Check
|
* testsuite/20_util/allocator_traits/requirements/typedefs.cc: Check
|
||||||
|
|
|
@ -22,8 +22,21 @@
|
||||||
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
|
||||||
|
typedef short test_type;
|
||||||
|
|
||||||
|
template<typename T>
|
||||||
|
struct minimal_allocator
|
||||||
|
{
|
||||||
|
typedef T value_type;
|
||||||
|
minimal_allocator();
|
||||||
|
template <typename U>
|
||||||
|
minimal_allocator(const minimal_allocator<U>&);
|
||||||
|
T* allocate(std::size_t);
|
||||||
|
void deallocate(T*, std::size_t);
|
||||||
|
};
|
||||||
|
|
||||||
namespace std
|
namespace std
|
||||||
{
|
{
|
||||||
typedef short test_type;
|
|
||||||
template struct allocator_traits<std::allocator<test_type>>;
|
template struct allocator_traits<std::allocator<test_type>>;
|
||||||
|
template struct allocator_traits<minimal_allocator<test_type>>;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue