Fix allocator concept to match C++03 requirements in table 32.

[SVN r62120]
This commit is contained in:
John Maddock
2010-05-21 16:20:15 +00:00
parent 132c39a42c
commit e3dfbd0953

View File

@ -106,14 +106,9 @@ public:
allocator_architype();
allocator_architype(const allocator_architype&);
#if defined(BOOST_MSVC) && (BOOST_MSVC == 1600)
//
// This doesn't appear to be part of the allocator requirements
// in the std, but is required by std::vector in VC10 :-(
//
template <class Other>
allocator_architype(const allocator_architype<Other>&);
#endif
void construct(pointer, const_reference);
void destroy(pointer);