* testsuite/20_util/allocator_traits/requirements/
explicit_instantiation.cc: Add another instantiation.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@174957
138bc75d-0d04-0410-961f-
82ee72b054a4
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>
+
* testsuite/20_util/allocator_traits/requirements/typedefs.cc: Check
for allocator_type and value_type.
#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
{
- typedef short test_type;
template struct allocator_traits<std::allocator<test_type>>;
+ template struct allocator_traits<minimal_allocator<test_type>>;
}